invoke method

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

Invokes the RunnablePassthrough on the given input.

Implementation

@override
Future<RunInput> invoke(
  final RunInput input, {
  final RunnableOptions? options,
}) {
  return Future.value(input);
}