ExplainableAction constructor

const ExplainableAction({
  1. Key? key,
  2. required Widget child,
  3. required List<Phase> phases,
  4. required String explainerTitle,
  5. String? helperText,
  6. int initialIndex = 0,
  7. VoidCallback? onPressed,
  8. bool showExplainerOnFirstTap = false,
})

Implementation

const ExplainableAction({
  super.key,
  required this.child,
  required this.phases,
  required this.explainerTitle,
  this.helperText,
  this.initialIndex = 0,
  this.onPressed,
  this.showExplainerOnFirstTap = false,
});