cborDataTypeNullableToJson function

String? cborDataTypeNullableToJson(
  1. CborDataType? cborDataType
)

Implementation

String? cborDataTypeNullableToJson(enums.CborDataType? cborDataType) {
  return cborDataType?.value;
}