Skip to content

video_player: mixWithOthers setter not implemented for web #75493

@llucax

Description

@llucax

Steps to Reproduce

  1. Run flutter create bug1 && cd bug1.
  2. Apply this diff:
diff --git a/lib/main.dart b/lib/main.dart
index 6af190c..e168732 100644
--- a/lib/main.dart
+++ b/lib/main.dart
@@ -60,6 +60,16 @@ class _MyHomePageState extends State<MyHomePage> {
     });
   }
 
+  @override
+  void initState() {
+    super.initState();
+    VideoPlayerController _controller = VideoPlayerController.network(
+      'http://www.sample-videos.com/video123/mp4/720/big_buck_bunny_720p_20mb.mp4',
+      videoPlayerOptions: VideoPlayerOptions(mixWithOthers: true),
+    );
+    _controller.initialize();
+  }
+
   @override
   Widget build(BuildContext context) {
     // This method is rerun every time setState is called, for instance as done
diff --git a/pubspec.yaml b/pubspec.yaml
index d8c0dbc..df0285f 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -23,6 +23,7 @@ environment:
 dependencies:
   flutter:
     sdk: flutter
+  video_player: ^1.0.1
 
   # The following adds the Cupertino Icons font to your application.
   # Use with the CupertinoIcons class for iOS style icons.
  1. Run flutter run -d chrome

Expected results: No errors are shown

Actual results: This exception is thrown: Error: UnimplementedError: setMixWithOthers() has not been implemented.

Logs
$ flutter run --verbose -d chrome
[  +64 ms] executing: [/home/luca/software/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[  +30 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] 5d36f2e7f5387b6c751449258ade8e4e6edf99be
[        ] executing: [/home/luca/software/flutter/] git tag --points-at 5d36f2e7f5387b6c751449258ade8e4e6edf99be
[  +16 ms] Exit code 0 from: git tag --points-at 5d36f2e7f5387b6c751449258ade8e4e6edf99be
[        ] 1.25.0-8.3.pre
[  +36 ms] executing: [/home/luca/software/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[   +2 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] origin/beta
[        ] executing: [/home/luca/software/flutter/] git ls-remote --get-url origin
[   +2 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] https://github.com/flutter/flutter.git
[  +32 ms] executing: [/home/luca/software/flutter/] git rev-parse --abbrev-ref HEAD
[   +2 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] beta
[  +39 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[   +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[  +73 ms] executing: /home/luca/Android/Sdk/platform-tools/adb devices -l
[  +14 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[  +49 ms] executing: /home/luca/Android/Sdk/platform-tools/adb devices -l
[  +17 ms] Skipping pub get: version match.
[  +64 ms] Found plugin video_player at /home/luca/.pub-cache/hosted/pub.dartlang.org/video_player-1.0.1/
[   +6 ms] Found plugin video_player_web at /home/luca/.pub-cache/hosted/pub.dartlang.org/video_player_web-0.1.4+1/
[  +27 ms] Found plugin integration_test at /home/luca/software/flutter/packages/integration_test/
[  +91 ms] Found plugin video_player at /home/luca/.pub-cache/hosted/pub.dartlang.org/video_player-1.0.1/
[   +1 ms] Found plugin video_player_web at /home/luca/.pub-cache/hosted/pub.dartlang.org/video_player_web-0.1.4+1/
[  +16 ms] Found plugin integration_test at /home/luca/software/flutter/packages/integration_test/
[   +6 ms] Generating /home/luca/devel/flutter/bug1/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[  +57 ms] List of devices attached
           LGH8701d9f7a4          device usb:1-2.2 product:lucye_global_com model:LG_H870 device:lucye transport_id:8
[   +5 ms] List of devices attached
           LGH8701d9f7a4          device usb:1-2.2 product:lucye_global_com model:LG_H870 device:lucye transport_id:8
[ +103 ms] Launching lib/main.dart on Chrome in debug mode...
[  +86 ms] Updating assets
[ +102 ms] Waiting for connection from debug service on Chrome...
[  +24 ms] Found plugin video_player at /home/luca/.pub-cache/hosted/pub.dartlang.org/video_player-1.0.1/
[   +1 ms] Found plugin video_player_web at /home/luca/.pub-cache/hosted/pub.dartlang.org/video_player_web-0.1.4+1/
[  +14 ms] Found plugin integration_test at /home/luca/software/flutter/packages/integration_test/
[  +21 ms] Found plugin video_player at /home/luca/.pub-cache/hosted/pub.dartlang.org/video_player-1.0.1/
[        ] Found plugin video_player_web at /home/luca/.pub-cache/hosted/pub.dartlang.org/video_player_web-0.1.4+1/
[  +13 ms] Found plugin integration_test at /home/luca/software/flutter/packages/integration_test/
[  +32 ms] <- reset
[   +6 ms] /home/luca/software/flutter/bin/cache/dart-sdk/bin/dart --disable-dart-dev
/home/luca/software/flutter/bin/cache/artifacts/engine/linux-x64/frontend_server.dart.snapshot --sdk-root /home/luca/software/flutter/bin/cache/flutter_web_sdk/
--incremental --target=dartdevc --debugger-module-names --experimental-emit-debug-metadata --output-dill /tmp/flutter_tools.CAADYP/flutter_tool.EDWQNT/app.dill
--libraries-spec file:///home/luca/software/flutter/bin/cache/flutter_web_sdk/libraries.json --packages /home/luca/devel/flutter/bug1/.dart_tool/package_config.json
-Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts --track-widget-creation --filesystem-root /tmp/flutter_tools.CAADYP/flutter_tools.HKWGAT
--filesystem-scheme org-dartlang-app --initialize-from-dill build/fbbe6a61fb7a1de317d381f8df4814e5.cache.dill.track.dill --platform
file:///home/luca/software/flutter/bin/cache/flutter_web_sdk/kernel/flutter_ddc_sdk.dill --no-sound-null-safety
[   +9 ms] <- compile org-dartlang-app:/web_entrypoint.dart
[+15251 ms] Waiting for connection from debug service on Chrome... (completed in 15.4s)
[        ] Synced 28.8MB.
[        ] <- accept
[        ] Caching compiled dill
[ +200 ms] Using Chromium 83.0.4103.116 built on Debian bullseye/sid, running on Debian bullseye/sid

[+1489 ms] [CHROME]:Gtk-Message: 10:52:38.614: Failed to load module "appmenu-gtk-module"
[  +74 ms] [CHROME]:
[        ] [CHROME]:DevTools listening on ws://127.0.0.1:44201/devtools/browser/4537a8bd-e8f2-4b14-8f20-a05fa86f4bcc
[ +485 ms] DwdsInjector: Received request for entrypoint at http://localhost:38593/main_module.bootstrap.js
[   +4 ms] MetadataProvider: Loading debug metadata...
[   +7 ms] MetadataProvider: Loaded debug metadata
[   +5 ms] DwdsInjector: Injected debugging metadata for entrypoint at http://localhost:38593/main_module.bootstrap.js
[+3365 ms] DevHandler: Debug service listening on ws://127.0.0.1:33687/Yesee4CUgqA=/ws

[   +5 ms] Debug service listening on ws://127.0.0.1:33687/Yesee4CUgqA=/ws
[        ] Running with unsound null safety
[        ] For more information see https://dart.dev/null-safety/unsound-null-safety
[   +1 ms] Warning: Flutter's support for web development is not stable yet and hasn't
[        ] been thoroughly tested in production environments.
[        ] For more information see https://flutter.dev/web
[        ] 🔥  To hot restart changes while running, press "r" or "R".
[   +1 ms] For a more detailed help message, press "h". To quit, press "q".
[ +936 ms] Error: UnimplementedError: setMixWithOthers() has not been implemented.
                        at Object.throw_ [as throw] (http://localhost:38593/dart_sdk.js:4361:11)
                        at video_player_web.VideoPlayerPlugin.new.setMixWithOthers
                        (http://localhost:38593/packages/video_player_platform_interface/method_channel_video_player.dart.lib.js:242:17)
                        at video_player.VideoPlayerController.network.initialize (http://localhost:38593/packages/video_player/video_player.dart.lib.js:967:51)
                        at initialize.next (<anonymous>)
                        at runBody (http://localhost:38593/dart_sdk.js:38027:34)
                        at Object._async [as async] (http://localhost:38593/dart_sdk.js:38058:7)
                        at video_player.VideoPlayerController.network.initialize (http://localhost:38593/packages/video_player/video_player.dart.lib.js:943:20)
                        at main._MyHomePageState.new.initState (http://localhost:38593/packages/bug1/main.dart.lib.js:485:19)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49046:54)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at _InheritedNotifierElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at _InheritedNotifierElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at _InheritedNotifierElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at _InheritedNotifierElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at _InheritedNotifierElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at _InheritedNotifierElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at basic._OffstageElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at basic._OffstageElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at basic._OffstageElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at overlay$._TheatreElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at overlay$._TheatreElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:28150:29)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at _InheritedNotifierElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at _InheritedNotifierElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at _InheritedNotifierElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at _InheritedNotifierElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at _InheritedNotifierElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at _InheritedNotifierElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at _InheritedNotifierElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at _InheritedNotifierElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at _InheritedNotifierElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at _InheritedNotifierElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at _InheritedNotifierElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at _InheritedNotifierElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at _InheritedNotifierElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at _InheritedNotifierElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at _InheritedNotifierElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at _InheritedNotifierElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at _InheritedNotifierElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at _InheritedNotifierElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.SingleChildRenderObjectElement.new.inflateWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.SingleChildRenderObjectElement.new.updateChild
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.SingleChildRenderObjectElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:41208:27)
                        at _InheritedNotifierElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at _InheritedNotifierElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at _InheritedNotifierElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at _InheritedNotifierElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at _InheritedNotifierElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at _InheritedNotifierElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.InheritedElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.InheritedElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.InheritedElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.InheritedElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.InheritedElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.InheritedElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatefulElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatefulElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatefulElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49072:13)
                        at framework.StatefulElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatefulElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:49065:25)
                        at framework.StatefulElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at framework.StatelessElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at framework.StatelessElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at framework.StatelessElement.new.performRebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26078:29)
                        at framework.StatelessElement.new.rebuild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:25211:12)
                        at framework.StatelessElement.new.[_firstBuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26046:12)
                        at framework.StatelessElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:26042:24)
                        at RenderObjectToWidgetElement.new.inflateWidget (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24796:16)
                        at RenderObjectToWidgetElement.new.updateChild (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:24655:25)
                        at RenderObjectToWidgetElement.new.[_rebuild] (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:51776:33)
                        at RenderObjectToWidgetElement.new.mount (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:51756:24)
                        at http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:51685:37
                        at framework.BuildOwner.new.buildScope (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:48630:13)
                        at RenderObjectToWidgetAdapter.new.attachToRenderTree (http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:51684:17)
                        at binding$5.WidgetsFlutterBinding.new.attachRootWidget
(http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:51548:226)
                        at http://localhost:38593/packages/flutter/src/widgets/widget_span.dart.lib.js:51542:14
                        at internalCallback (http://localhost:38593/dart_sdk.js:24151:11)
$ flutter analyze
Analyzing bug1...                                                       
No issues found! (ran in 2.0s)
$ flutter doctor -v
[✓] Flutter (Channel beta, 1.25.0-8.3.pre, on Linux, locale en_IE.UTF-8)
    • Flutter version 1.25.0-8.3.pre at /home/luca/software/flutter
    • Framework revision 5d36f2e7f5 (3 weeks ago), 2021-01-14 15:57:49 -0800
    • Engine revision 7a8f8ca02c
    • Dart version 2.12.0 (build 2.12.0-133.7.beta)

[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
    • Android SDK at /home/luca/Android/Sdk
    • Platform android-30, build-tools 30.0.2
    • Java binary at: /home/luca/software/android-studio/jre/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
    • All Android licenses accepted.

[✓] Chrome - develop for the web
    • CHROME_EXECUTABLE = chromium

[✓] Android Studio
    • Android Studio at /home/luca/software/android-studio
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • android-studio-dir = /home/luca/software/android-studio
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)

[✓] Connected device (1 available)
    • Chrome (web) • chrome • web-javascript • Chromium 83.0.4103.116 built on Debian bullseye/sid, running on Debian bullseye/sid

• No issues found!

Metadata

Metadata

Assignees

Labels

P1High-priority issues at the top of the work listc: crashStack traces logged to the consolefound in release: 1.26Found to occur in 1.26good first issueRelatively approachable for first-time contributorshas reproducible stepsThe issue has been confirmed reproducible and is ready to work onp: video_playerThe Video Player pluginplatform-webWeb applications specificallyr: fixedIssue is closed as already fixed in a newer version

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions