fDXNotificationSeverityListToJson function
        
List<String> 
fDXNotificationSeverityListToJson(
    
    
- List<FDXNotificationSeverity> ? fDXNotificationSeverity
Implementation
List<String> fDXNotificationSeverityListToJson(
    List<enums.FDXNotificationSeverity>? fDXNotificationSeverity) {
  if (fDXNotificationSeverity == null) {
    return [];
  }
  return fDXNotificationSeverity
      .map((e) => enums.$FDXNotificationSeverityMap[e]!)
      .toList();
}