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