tagOperationDTOExplodedListToJson function

String tagOperationDTOExplodedListToJson(
  1. List<TagOperationDTO>? tagOperationDTO
)

Implementation

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