ProgressSection constructor

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

Implementation

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