ProgressSection constructor

const ProgressSection({
  1. Key? key,
  2. required double progress,
  3. required String statusMessage,
  4. required VoidCallback onCancel,
  5. bool enableHaptics = false,
  6. required ResolvedColors colors,
  7. required ResolvedStyles styles,
})

Implementation

const ProgressSection({
  super.key,
  required this.progress,
  required this.statusMessage,
  required this.onCancel,
  this.enableHaptics = false,
  required this.colors,
  required this.styles,
});