cellularExpiryStatusDTOExplodedListToJson function

String cellularExpiryStatusDTOExplodedListToJson(
  1. List<CellularExpiryStatusDTO>? cellularExpiryStatusDTO
)

Implementation

String cellularExpiryStatusDTOExplodedListToJson(
    List<enums.CellularExpiryStatusDTO>? cellularExpiryStatusDTO) {
  return cellularExpiryStatusDTO?.map((e) => e.value!).join(',') ?? '';
}