crewRatingTypeListToJson function

List<String> crewRatingTypeListToJson(
  1. List<CrewRatingType>? crewRatingType
)

Implementation

List<String> crewRatingTypeListToJson(
    List<enums.CrewRatingType>? crewRatingType) {
  if (crewRatingType == null) {
    return [];
  }

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