step<TWorld extends World, TInput1, TInput2, TInput3, TInput4, TInput5> function

StepDefinitionGeneric<TWorld> step<TWorld extends World, TInput1, TInput2, TInput3, TInput4, TInput5>(
  1. Pattern pattern,
  2. int expectedParameterCount,
  3. Function onInvoke, {
  4. StepDefinitionConfiguration? configuration,
})

Implementation

StepDefinitionGeneric<TWorld>
    step<TWorld extends World, TInput1, TInput2, TInput3, TInput4, TInput5>(
  Pattern pattern,
  int expectedParameterCount,
  Function onInvoke, {
  StepDefinitionConfiguration? configuration,
}) {
  return GenericFunctionStepDefinition<TWorld>(
    pattern,
    onInvoke,
    expectedParameterCount,
    configuration: configuration,
  );
}