copyWith method
Implementation
NumbersBACS copyWith({String? accountId, String? account, String? sortCode}) {
return NumbersBACS(
accountId: accountId ?? this.accountId,
account: account ?? this.account,
sortCode: sortCode ?? this.sortCode);
}