encodeList function

Uint8List encodeList(
  1. List l,
  2. String type
)

Implementation

Uint8List encodeList(List<dynamic> l, String type) {
  var length = encodeInt(l.length);
  return Uint8List.fromList(length + encodeFixedLengthList(l, type, l.length));
}