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