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