progressBar static method

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

Implementation

static progressBar({ProgressBarType? type, Color? color, int? width}) {
  return ProgressBar(type: type, color: color, width: width);
}