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