sandboxIncomeFireWebhookRequestVerificationStatusNullableListFromJson function
List<SandboxIncomeFireWebhookRequestVerificationStatus> ?
sandboxIncomeFireWebhookRequestVerificationStatusNullableListFromJson(
- List? sandboxIncomeFireWebhookRequestVerificationStatus, [
- 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();
}