copyWith method

StageTab copyWith({
  1. String? task,
  2. num? total,
})

Implementation

StageTab copyWith({  String? task,
  num? total,
}) => StageTab(  task: task ?? _task,
  total: total ?? _total,
);