toBytes method
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();
}