fDXNotificationSeverityListToJson function

List<String> fDXNotificationSeverityListToJson(
  1. List<FDXNotificationSeverity>? fDXNotificationSeverity
)

Implementation

List<String> fDXNotificationSeverityListToJson(
    List<enums.FDXNotificationSeverity>? fDXNotificationSeverity) {
  if (fDXNotificationSeverity == null) {
    return [];
  }

  return fDXNotificationSeverity
      .map((e) => enums.$FDXNotificationSeverityMap[e]!)
      .toList();
}