ProgressSection constructor
const
ProgressSection({
- Key? key,
- required double progress,
- required String statusMessage,
- required VoidCallback onCancel,
- required ResolvedColors colors,
- required ResolvedStyles styles,
Implementation
const ProgressSection({
super.key,
required this.progress,
required this.statusMessage,
required this.onCancel,
required this.colors,
required this.styles,
});