MultiViewStep constructor

const MultiViewStep(
  1. {required Widget content,
  2. String title = '',
  3. double? size,
  4. bool hidden = false,
  5. Widget? indicator}
)

Step class for the MultiStepperView. Title and size are optional for the MultiStepperView.

Implementation

const MultiViewStep({
  required this.content,
  this.title = '',
  this.size,
  this.hidden = false,
  this.indicator,
});