cborDataTypeListToJson function
- List<
CborDataType> ? cborDataType
Implementation
List<String> cborDataTypeListToJson(List<enums.CborDataType>? cborDataType) {
if (cborDataType == null) {
return [];
}
return cborDataType.map((e) => e.value!).toList();
}