invoke method

  1. @override
Future<ChainValues> invoke(
  1. ChainValues input, {
  2. ChainOptions? options,
})
override

Runs the core logic of this chain with the given input.

  • input is the input to this chain.
  • options not used.

Implementation

@override
Future<ChainValues> invoke(
  final ChainValues input, {
  final ChainOptions? options,
}) {
  return call(input);
}