crewShirtSizeListFromJson function

List<CrewShirtSize> crewShirtSizeListFromJson(
  1. List? crewShirtSize
)

Implementation

List<enums.CrewShirtSize> crewShirtSizeListFromJson(List? crewShirtSize) {
  if (crewShirtSize == null) {
    return [];
  }

  return crewShirtSize.map((e) => crewShirtSizeFromJson(e.toString())).toList();
}