tagOperationDTOExplodedListToJson function
- List<
TagOperationDTO> ? tagOperationDTO
Implementation
String tagOperationDTOExplodedListToJson(
List<enums.TagOperationDTO>? tagOperationDTO) {
return tagOperationDTO?.map((e) => e.value!).join(',') ?? '';
}