Created
July 21, 2019 13:27
-
-
Save SAGARSURI/58049ea9928799e6e753dc787e00efe2 to your computer and use it in GitHub Desktop.
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
import 'package:inject/inject.dart'; | |
import 'provider_injector.inject.dart' as g; | |
import 'provider_module.dart'; | |
import 'provider_test.dart'; | |
@Injector(const [ProviderModule]) | |
abstract class ProviderTestInjector{ | |
@provide | |
ProviderTest get app; | |
static final create = g.ProviderTestInjector$Injector.create; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment