getScreenshotsForGroup method

List<ScreenshotData> getScreenshotsForGroup(
  1. String groupId
)

Get screenshots for a specific group

Implementation

List<ScreenshotData> getScreenshotsForGroup(String groupId) {
  return List.unmodifiable(_captureGroups[groupId] ?? []);
}