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