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/e9b1706bca3b0329f556f2770d63ea99 to your computer and use it in GitHub Desktop.
Save Vanethos/e9b1706bca3b0329f556f2770d63ea99 to your computer and use it in GitHub Desktop.
class InjectorWidget extends InheritedWidget {
//...
void init() {
httpClient = HttpClient();
endpointA = EndpointsA(httpClient);
endpointB = EndpointsB(httpClient);
_homeBloc = HomeBloc(endpointA, endpointB);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment