copyWith method

NumbersInternationalNullable copyWith({
  1. String? accountId,
  2. String? iban,
  3. String? bic,
})

Implementation

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