processDeviceScreenshots function

void processDeviceScreenshots()

Implementation

void processDeviceScreenshots() async {
  final entries = Catalog().widgetDevicePreviewMap.entries.toList();
  for (final w in entries) {
    await w.value.capture();
  }
}