copyWith method
CreditBankIncomeAccount
copyWith({
- String? accountId,
- String? mask,
- String? name,
- String? officialName,
- DepositoryAccountSubtype? subtype,
- CreditBankIncomeAccountType? type,
- List<
Owner> ? owners,
Implementation
CreditBankIncomeAccount copyWith(
{String? accountId,
String? mask,
String? name,
String? officialName,
enums.DepositoryAccountSubtype? subtype,
enums.CreditBankIncomeAccountType? type,
List<Owner>? owners}) {
return CreditBankIncomeAccount(
accountId: accountId ?? this.accountId,
mask: mask ?? this.mask,
name: name ?? this.name,
officialName: officialName ?? this.officialName,
subtype: subtype ?? this.subtype,
type: type ?? this.type,
owners: owners ?? this.owners);
}