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