withParams method
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,
);
}