ProgressSpinFastor constructor

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

Implementation

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

  /**
   * the spin libriry not working when size less than 28
   */
  if(size! < 30 ) {
    size = 30;
  }
}