ProgressBar constructor
const
ProgressBar({
- required Color color,
- required Color background_color,
- required double height,
- required double parent_width,
- required double initial_percentage,
- required double final_percentage,
- required int animation_delay,
- required bool show_percentage_text,
- required double border_radius,
- required double elevation,
- required Alignment alignment,
Implementation
const ProgressBar({
required this.color,
required this.background_color,
required this.height,
required this.parent_width,
required this.initial_percentage,
required this.final_percentage,
required this.animation_delay,
required this.show_percentage_text,
required this.border_radius,
required this.elevation,
required this.alignment,
});