copyWith method
AccountIdentityMatchScore
copyWith({
- NameMatchScore? legalName,
- PhoneNumberMatchScore? phoneNumber,
- EmailAddressMatchScore? emailAddress,
- AddressMatchScore? address,
- String? accountId,
- AccountBalance? balances,
- String? mask,
- String? name,
- String? officialName,
- AccountType? type,
- AccountSubtype? subtype,
- AccountIdentityMatchScoreVerificationStatus? verificationStatus,
Implementation
AccountIdentityMatchScore copyWith(
{NameMatchScore? legalName,
PhoneNumberMatchScore? phoneNumber,
EmailAddressMatchScore? emailAddress,
AddressMatchScore? address,
String? accountId,
AccountBalance? balances,
String? mask,
String? name,
String? officialName,
enums.AccountType? type,
enums.AccountSubtype? subtype,
enums.AccountIdentityMatchScoreVerificationStatus? verificationStatus}) {
return AccountIdentityMatchScore(
legalName: legalName ?? this.legalName,
phoneNumber: phoneNumber ?? this.phoneNumber,
emailAddress: emailAddress ?? this.emailAddress,
address: address ?? this.address,
accountId: accountId ?? this.accountId,
balances: balances ?? this.balances,
mask: mask ?? this.mask,
name: name ?? this.name,
officialName: officialName ?? this.officialName,
type: type ?? this.type,
subtype: subtype ?? this.subtype,
verificationStatus: verificationStatus ?? this.verificationStatus);
}