ScreenshotData constructor

ScreenshotData({
  1. required Uint8List bytes,
  2. required String filename,
  3. required int width,
  4. required int height,
  5. required String group,
  6. required int timestamp,
})

Creates a new screenshot data object

Implementation

ScreenshotData({
  required this.bytes,
  required this.filename,
  required this.width,
  required this.height,
  required this.group,
  required this.timestamp,
});