copyWithWrapped method

NumbersInternationalNullable copyWithWrapped({
  1. Wrapped<String>? accountId,
  2. Wrapped<String>? iban,
  3. Wrapped<String>? bic,
})

Implementation

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