accountIdentityMatchScoreVerificationStatusListFromJson function

List<AccountIdentityMatchScoreVerificationStatus> accountIdentityMatchScoreVerificationStatusListFromJson(
  1. List? accountIdentityMatchScoreVerificationStatus, [
  2. 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();
}