withParams method

StepInput withParams(
  1. dynamic newParams
)

Creates a new copy of StepInput updated with runtime execution parameters.

Implementation

StepInput withParams(dynamic newParams) {
  return StepInput(
    description: description,
    callback: callback,
    params: newParams,
    exceptionType: exceptionType,
    exceptionMessage: exceptionMessage,
  );
}