encode method

Uint8List encode()

Implementation

Uint8List encode() {
  final len = lebEncode(_typs.length);
  final buf = u8aConcat(_typs);
  final result = List<int>.from(len, growable: true)..addAll(buf);
  return Uint8List.fromList(result);
}