cborEncode function

List<int> cborEncode(
  1. CborValue value
)

Alias for cbor.encode.

Implementation

List<int> cborEncode(CborValue value) {
  return cbor.encode(value);
}