copyWithWrapped method

NumbersBACS copyWithWrapped({
  1. Wrapped<String>? accountId,
  2. Wrapped<String>? account,
  3. Wrapped<String>? sortCode,
})

Implementation

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