sandboxIncomeFireWebhookRequestVerificationStatusNullableListFromJson function

List<SandboxIncomeFireWebhookRequestVerificationStatus>? sandboxIncomeFireWebhookRequestVerificationStatusNullableListFromJson(
  1. List? sandboxIncomeFireWebhookRequestVerificationStatus, [
  2. List<SandboxIncomeFireWebhookRequestVerificationStatus>? defaultValue
])

Implementation

List<enums.SandboxIncomeFireWebhookRequestVerificationStatus>?
    sandboxIncomeFireWebhookRequestVerificationStatusNullableListFromJson(
  List? sandboxIncomeFireWebhookRequestVerificationStatus, [
  List<enums.SandboxIncomeFireWebhookRequestVerificationStatus>? defaultValue,
]) {
  if (sandboxIncomeFireWebhookRequestVerificationStatus == null) {
    return defaultValue;
  }

  return sandboxIncomeFireWebhookRequestVerificationStatus
      .map((e) => sandboxIncomeFireWebhookRequestVerificationStatusFromJson(
          e.toString()))
      .toList();
}