copyWithWrapped method
Implementation
NumbersInternational copyWithWrapped(
{Wrapped<String>? accountId,
Wrapped<String>? iban,
Wrapped<String>? bic}) {
return NumbersInternational(
accountId: (accountId != null ? accountId.value : this.accountId),
iban: (iban != null ? iban.value : this.iban),
bic: (bic != null ? bic.value : this.bic));
}