stopBitsDTOExplodedListToJson function

String stopBitsDTOExplodedListToJson(
  1. List<StopBitsDTO>? stopBitsDTO
)

Implementation

String stopBitsDTOExplodedListToJson(List<enums.StopBitsDTO>? stopBitsDTO) {
  return stopBitsDTO?.map((e) => e.value!).join(',') ?? '';
}