Flutter 3.24 or newer supports running a web app with Wasm using flutter run --wasm.
Auto-Injector for wasm.
RuntimeError: dereferencing a null pointer at ModularRouteInformationParser. This could be related to an issue when parsing routes in Flutter Web.
AutoInjector Error:
There's an error in the AutoInjectorImpl._resolveBind method, specifically when resolving an instance by class name. This might indicate an issue with dependency injection where the required instance could not be found or injected.
It seems that the core issue is within the dependency injection process (AutoInjectorImpl) and how ModularRouteInformationParser handles routing, especially on Flutter Web.
Describe the bug:
Flutter 3.24 or newer supports running a web app with Wasm using
flutter run --wasm
.Auto-Injector for wasm.
RuntimeError: dereferencing a null pointer at ModularRouteInformationParser. This could be related to an issue when parsing routes in Flutter Web.
AutoInjector Error: There's an error in the AutoInjectorImpl._resolveBind method, specifically when resolving an instance by class name. This might indicate an issue with dependency injection where the required instance could not be found or injected. It seems that the core issue is within the dependency injection process (AutoInjectorImpl) and how ModularRouteInformationParser handles routing, especially on Flutter Web.
Environment: Flutter: 3.24.4 flutter_modular: ^6.3.4 auto_injector: ^2.0.5
To Reproduce