Elvis Sun
Elvis Sun
I followed a similar design with the `ConnectToDataSourceAction` action which triggers a listener on login. https://github.com/brianegan/flutter_architecture_samples/blob/master/firestore_redux/lib/middleware/store_todos_middleware.dart However I noticed sometimes (haven't been able to reproduce this consistently), after long period...
`Cannot load custom model` is not very helpful, is it possible to show more actionable error messages?
When I passed "+1" to `isValidPhoneNumber`, it throws the following exception: ``` E/flutter (13120): [ERROR:flutter/lib/ui/ui_dart_state.cc(157)] Unhandled Exception: PlatformException(NumberParseException, The string supplied did not seem to be a phone number., null)...
For the following code: ```dart List createMiddlewares() { final onFetchWishListMiddleware = _onFetchWishList(); return [ TypedMiddleware(onFetchWishListMiddleware), ]; } Middleware _onFetchSomething(SomethingService service) { return (Store store, action, NextDispatcher next) async* { next(action);...