getBytesList static method

List<Uint8List>? getBytesList(
  1. String key
)

Implementation

static List<Uint8List>? getBytesList(String key) {
  final data = dataMap[key];
  if (data != null) {
    final values = data.listBytesValue.values;
    return [for (var value in values) Uint8List.fromList(value)];
  }
  return [];
}