MultiProgressModel constructor

MultiProgressModel({
  1. Map<String, ProgressModel>? bars,
  2. int width = _defaultWidth,
})

Creates a new multi-progress model.

Implementation

MultiProgressModel({
  Map<String, ProgressModel>? bars,
  this.width = _defaultWidth,
}) : bars = bars ?? {};