call method

PartConnector call({
  1. InputStateType? input,
  2. InputStateType? inputForIndex(
    1. int
    )?,
  3. int count = 1,
  4. bool withoutConnections = false,
})

Implementation

PartConnector call({
  InputStateType? input,
  InputStateType? Function(int)? inputForIndex,
  int count = 1,
  bool withoutConnections = false,
}) {
  return PartConnector(
    input: input,
    inputForIndex: inputForIndex,
    count: count,
    type: InstanceType,
    isAsync: true,
    withoutConnections: withoutConnections,
  );
}