ScopeAutosaveSettings constructor

const ScopeAutosaveSettings({
  1. required bool autosavePhotos,
  2. required bool autosaveVideos,
  3. required int maxVideoFileSize,
})

Contains autosave settings for an autosave settings scope

Implementation

const ScopeAutosaveSettings({
  required this.autosavePhotos,
  required this.autosaveVideos,
  required this.maxVideoFileSize,
});