readBytes static method

List<int> readBytes(
  1. List<int> buff,
  2. int p,
  3. int l
)

Implementation

static List<int> readBytes(List<int> buff, int p, int l) {
  final List<int> arr = [];
  for (int i = 0; i < l; i++) arr.add(buff[p + i]);
  return arr;
}