ProgressBar constructor

ProgressBar({
  1. ProgressBarType? type,
  2. Color? color,
  3. int? width,
})

Implementation

ProgressBar({ProgressBarType? type, Color? color, int? width}) {
  _type = type;
  _color = color;
  _width = width;
}