copyWith method
Implementation
PriorityTab copyWith({ String? name,
num? total,
}) => PriorityTab( name: name ?? _name,
total: total ?? _total,
);
PriorityTab copyWith({ String? name,
num? total,
}) => PriorityTab( name: name ?? _name,
total: total ?? _total,
);