combine static method

Uint8List combine(
  1. List<Uint8List> elements
)

Implementation

static Uint8List combine(List<Uint8List> elements) {
  final results = <int>[];
  elements.forEach(results.addAll);
  return Uint8List.fromList(results);
}