ProgressBarModel constructor
ProgressBarModel({})
Implementation
ProgressBarModel({
int? id,
this.current = 0,
this.total = 0,
this.width = 40,
this.fillChar = '=',
this.emptyChar = ' ',
this.showPercentage = true,
this.showCount = true,
this.renderConfig = const RenderConfig(),
}) : id = id ?? _nextProgressBarId();