TableFastor constructor

TableFastor({
  1. required List<Widget> listRow,
  2. bool? showProgress,
  3. double? sizeProgress,
  4. Color? colorProgress,
})

Implementation

TableFastor(  { required  this.listRow,
  this.showProgress,
  this.sizeProgress,
  this.colorProgress,
} ){

  showProgress ??= false;
  setDefaultProgressSize();
}