copyWith method
Implementation
Total copyWith({
String? advancedValue,
String? advanceFee,
String? receivedValue,
}) {
return Total(
advancedValue: advancedValue ?? this.advancedValue,
advanceFee: advanceFee ?? this.advanceFee,
receivedValue: receivedValue ?? this.receivedValue,
);
}