Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guilhermecarvalhocarneiro/cdd4d3f8f3bf059916f1e3e73cedbeb9 to your computer and use it in GitHub Desktop.
Save guilhermecarvalhocarneiro/cdd4d3f8f3bf059916f1e3e73cedbeb9 to your computer and use it in GitHub Desktop.
Controller/Store
class FeedController = _FeedControllerBase with _$FeedController;
abstract class _FeedControllerBase with Store {
FeedService _service = FeedService();
@observable
ObservableList<PostModel> list;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment