accountIdentityMatchScoreVerificationStatusListFromJson function
List<AccountIdentityMatchScoreVerificationStatus>
accountIdentityMatchScoreVerificationStatusListFromJson(
- List? accountIdentityMatchScoreVerificationStatus, [
- List<
AccountIdentityMatchScoreVerificationStatus> ? defaultValue
Implementation
List<enums.AccountIdentityMatchScoreVerificationStatus>
accountIdentityMatchScoreVerificationStatusListFromJson(
List? accountIdentityMatchScoreVerificationStatus, [
List<enums.AccountIdentityMatchScoreVerificationStatus>? defaultValue,
]) {
if (accountIdentityMatchScoreVerificationStatus == null) {
return defaultValue ?? [];
}
return accountIdentityMatchScoreVerificationStatus
.map((e) =>
accountIdentityMatchScoreVerificationStatusFromJson(e.toString()))
.toList();
}