PriorityTab constructor

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

Implementation

PriorityTab({
  String? name,
  bool isSelected = false,
  num? total,}){
  _name = name;
  _isSelected = isSelected;
  _total = total;
}