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