StepPage constructor

StepPage({
  1. required String? title,
  2. required dynamic builder(
    1. BuildContext context,
    2. bool isActive,
    3. void next()
    ),
  3. TextStyle? titleStyle,
})

Implementation

StepPage({required this.title, required this.builder, this.titleStyle});