copyWith method

CrewActuals copyWith({
  1. String? crew,
  2. String? totalCost,
  3. String? costCurrency,
})

Implementation

CrewActuals copyWith(
    {String? crew, String? totalCost, String? costCurrency}) {
  return CrewActuals(
      crew: crew ?? this.crew,
      totalCost: totalCost ?? this.totalCost,
      costCurrency: costCurrency ?? this.costCurrency);
}