copyWithWrapped method

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

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));
}