toBytes method

Uint8List toBytes()

Implementation

Uint8List toBytes() {
  final bb = BytesBuilder();
  var encodedString = utf8.encode('$this\x00');
  var encodedLength = encodedString.length.toUint16Bytes();
  bb.add(encodedLength);
  bb.add(encodedString);
  return bb.toBytes();
}