ProgressCircleFastor constructor

ProgressCircleFastor({
  1. Color? color,
  2. double? size,
})

Implementation

ProgressCircleFastor( {
  this.color,
  this.size
}){
  color ??= DSColor.ds_progress;
  size ??= 40.0;

}