Screenshot constructor

Screenshot({
  1. required File file,
  2. Frame? initiator,
})

Creates a Screenshot that points to a file on disk.

Implementation

Screenshot({
  required this.file,
  this.initiator,
});