cborDataTypeExplodedListToJson function

String cborDataTypeExplodedListToJson(
  1. List<CborDataType>? cborDataType
)

Implementation

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