StepInput constructor

StepInput({
  1. String? description,
  2. Function? callback,
  3. dynamic params,
  4. Type? exceptionType,
  5. String? exceptionMessage,
})

Creates an immutable step configuration container.

Implementation

StepInput({
  this.description,
  this.callback,
  this.params,
  this.exceptionType,
  this.exceptionMessage,
});