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