copyWith method
Implementation
NumbersInternationalNullable copyWith(
    {String? accountId, String? iban, String? bic}) {
  return NumbersInternationalNullable(
      accountId: accountId ?? this.accountId,
      iban: iban ?? this.iban,
      bic: bic ?? this.bic);
}