copyWith method
Implementation
PaymentAmountNullable copyWith(
{enums.PaymentAmountCurrency? currency, double? value}) {
return PaymentAmountNullable(
currency: currency ?? this.currency, value: value ?? this.value);
}
PaymentAmountNullable copyWith(
{enums.PaymentAmountCurrency? currency, double? value}) {
return PaymentAmountNullable(
currency: currency ?? this.currency, value: value ?? this.value);
}