copyWith method

NumbersBACS copyWith({
  1. String? accountId,
  2. String? account,
  3. String? sortCode,
})

Implementation

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