factory<T extends Object> static method
Bind a factory. Always a new constructor when calling Modular.get
Implementation
static Bind<T> factory<T extends Object>(T Function(Injector i) inject,
{bool export = false}) {
return Bind<T>(inject,
isSingleton: false, isLazy: true, isScoped: false, export: export);
}