copyWithWrapped method
Implementation
NumbersBACSNullable copyWithWrapped(
{Wrapped<String>? accountId,
Wrapped<String>? account,
Wrapped<String>? sortCode}) {
return NumbersBACSNullable(
accountId: (accountId != null ? accountId.value : this.accountId),
account: (account != null ? account.value : this.account),
sortCode: (sortCode != null ? sortCode.value : this.sortCode));
}