serialize property

Uint8List serialize

Implementation

Uint8List get serialize {
  final Uint8Buffer data = toCborList().getData();
  return Uint8List.view(data.buffer, 0, data.length);
}