invoke method
Invokes the RunnableBinding on the given input
.
input
- the input to invoke the RunnableBinding on.options
- the options to use when invoking the RunnableBinding.
Implementation
@override
Future<RunOutput> invoke(
final RunInput input, {
final CallOptions? options,
}) async {
final finalOptions =
options?.merge(this.options) as CallOptions? ?? this.options;
return bound.invoke(input, options: finalOptions);
}