StageTab constructor

StageTab({
  1. String? task,
  2. bool isSelected = false,
  3. num? total,
})

Implementation

StageTab({
  String? task,
  bool isSelected = false,
  num? total,}){
  _task = task;
  _isSelected = isSelected;
  _total = total;
}