toBuffer function

List<int> toBuffer(
  1. List<List<int>> bufs
)

Implementation

List<int> toBuffer(List<List<int>> bufs) {
  return List<int>.from(bufs.expand((element) => element).toList());
}