fDXNotificationSeverityNullableListFromJson function
List<FDXNotificationSeverity> ?
fDXNotificationSeverityNullableListFromJson(
- List? fDXNotificationSeverity, [
- List<
FDXNotificationSeverity> ? defaultValue
Implementation
List<enums.FDXNotificationSeverity>?
fDXNotificationSeverityNullableListFromJson(
List? fDXNotificationSeverity, [
List<enums.FDXNotificationSeverity>? defaultValue,
]) {
if (fDXNotificationSeverity == null) {
return defaultValue;
}
return fDXNotificationSeverity
.map((e) => fDXNotificationSeverityFromJson(e.toString()))
.toList();
}