ProgressBar constructor

const ProgressBar({
  1. required Color color,
  2. required Color background_color,
  3. required double height,
  4. required double parent_width,
  5. required double initial_percentage,
  6. required double final_percentage,
  7. required int animation_delay,
  8. required bool show_percentage_text,
  9. required double border_radius,
  10. required double elevation,
  11. 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,
});