platformDTOExplodedListToJson function

String platformDTOExplodedListToJson(
  1. List<PlatformDTO>? platformDTO
)

Implementation

String platformDTOExplodedListToJson(List<enums.PlatformDTO>? platformDTO) {
  return platformDTO?.map((e) => e.value!).join(',') ?? '';
}