Created
August 4, 2019 18:50
-
-
Save felangel/d332fadc3bd77b16984c8ee4b43b82b1 to your computer and use it in GitHub Desktop.
[flutter_firestore_todos] todos bloc snippet II
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Stream<TodosState> _mapTodosUpdateToState(TodosUpdated event) async* { | |
yield TodosLoaded(event.todos); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment