copyWith method

SenderBACSNullable copyWith({
  1. String? account,
  2. String? sortCode,
})

Implementation

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