call method
Connector
call({
- String scope = BaseScopes.weak,
- InputStateType? input,
- InputStateType? inputForIndex()?,
- int count = 1,
- bool withoutConnections = false,
- bool isLazy = false,
override
Implementation
@override
Connector call({
String scope = BaseScopes.weak,
InputStateType? input,
InputStateType? Function(int)? inputForIndex,
int count = 1,
bool withoutConnections = false,
bool isLazy = false,
}) {
return Connector(
scope: scope,
input: input,
inputForIndex: inputForIndex,
count: count,
type: InstanceType,
isAsync: true,
initializationOrder: order,
withoutConnections: withoutConnections,
awaitInitialization: awaitInitialization,
isLazy: isLazy,
);
}