File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class _AudioWidgetState extends State<AudioWidget> {
36
36
37
37
@override
38
38
void initState () {
39
- final sources = < String ? > [
39
+ sources = < String ? > [
40
40
if (widget.context.tree.element? .attributes['src' ] != null )
41
41
widget.context.tree.element! .attributes['src' ],
42
42
...ReplacedElement .parseMediaSources (widget.context.tree.element! .children),
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class _VideoWidgetState extends State<VideoWidget> {
39
39
@override
40
40
void initState () {
41
41
final attributes = widget.context.tree.element? .attributes ?? {};
42
- final sources = < String ? > [
42
+ sources = < String ? > [
43
43
if (attributes['src' ] != null )
44
44
attributes['src' ],
45
45
...ReplacedElement .parseMediaSources (widget.context.tree.element! .children),
You can’t perform that action at this time.
0 commit comments