LocalSnapshot constructor

LocalSnapshot({
  1. int taskId = 0,
  2. required String filePath,
  3. int width = 0,
  4. int height = 0,
})

Implementation

LocalSnapshot({
  this.taskId = 0,
  required this.filePath,
  this.width = 0,
  this.height = 0,
});