AccountIdentityMatchScore constructor

AccountIdentityMatchScore({
  1. NameMatchScore? legalName,
  2. PhoneNumberMatchScore? phoneNumber,
  3. EmailAddressMatchScore? emailAddress,
  4. AddressMatchScore? address,
  5. required String accountId,
  6. required AccountBalance balances,
  7. required String? mask,
  8. required String name,
  9. required String? officialName,
  10. required AccountType type,
  11. required AccountSubtype? subtype,
  12. AccountIdentityMatchScoreVerificationStatus? verificationStatus,
})

Implementation

AccountIdentityMatchScore({
  this.legalName,
  this.phoneNumber,
  this.emailAddress,
  this.address,
  required this.accountId,
  required this.balances,
  required this.mask,
  required this.name,
  required this.officialName,
  required this.type,
  required this.subtype,
  this.verificationStatus,
});