accountIdentityMatchScoreVerificationStatusNullableListFromJson function

List<AccountIdentityMatchScoreVerificationStatus>? accountIdentityMatchScoreVerificationStatusNullableListFromJson(
  1. List? accountIdentityMatchScoreVerificationStatus, [
  2. List<AccountIdentityMatchScoreVerificationStatus>? defaultValue
])

Implementation

List<enums.AccountIdentityMatchScoreVerificationStatus>?
    accountIdentityMatchScoreVerificationStatusNullableListFromJson(
  List? accountIdentityMatchScoreVerificationStatus, [
  List<enums.AccountIdentityMatchScoreVerificationStatus>? defaultValue,
]) {
  if (accountIdentityMatchScoreVerificationStatus == null) {
    return defaultValue;
  }

  return accountIdentityMatchScoreVerificationStatus
      .map((e) =>
          accountIdentityMatchScoreVerificationStatusFromJson(e.toString()))
      .toList();
}