copyWithWrapped method

NumbersEFTNullable copyWithWrapped({
  1. Wrapped<String>? accountId,
  2. Wrapped<String>? account,
  3. Wrapped<String>? institution,
  4. Wrapped<String>? branch,
})

Implementation

NumbersEFTNullable copyWithWrapped(
    {Wrapped<String>? accountId,
    Wrapped<String>? account,
    Wrapped<String>? institution,
    Wrapped<String>? branch}) {
  return NumbersEFTNullable(
      accountId: (accountId != null ? accountId.value : this.accountId),
      account: (account != null ? account.value : this.account),
      institution:
          (institution != null ? institution.value : this.institution),
      branch: (branch != null ? branch.value : this.branch));
}