call method

  1. @override
Connector call({
  1. String scope = BaseScopes.weak,
  2. InputStateType? input,
  3. InputStateType? inputForIndex(
    1. int
    )?,
  4. int count = 1,
  5. bool withoutConnections = false,
  6. 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,
  );
}