Skip to content

Instantly share code, notes, and snippets.

@Vanethos
Last active April 12, 2019 07:33
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 Vanethos/d331a7c3856bcc3f40fa0254a88dfa46 to your computer and use it in GitHub Desktop.
Save Vanethos/d331a7c3856bcc3f40fa0254a88dfa46 to your computer and use it in GitHub Desktop.
class InjectorWidget extends InheritedWidget {
//...
HomeBloc getHomeBloc({bool forceCreate = false}) {
if (_homeBloc == null || forceCreate) {
_homeBloc = HomeBloc(endpointA, endpointB)
}
return _homeBloc;
}
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment