HubbleStep constructor
const
HubbleStep({})
Creates a step for a HubbleStepper.
The title, content, and state arguments must not be null.
Implementation
const HubbleStep({
this.lineWidth = 24,
this.showLine = true,
this.lineColor,
this.iconBuilder,
required this.title,
this.subtitle,
this.content,
this.state = StepState.indexed,
this.isActive = false,
this.isExpanded = false,
}) : assert(title != null),
assert(state != null);