AutoSaveSettings constructor

const AutoSaveSettings({
  1. required bool photos,
  2. required bool videos,
  3. int? videoMaxSize,
})

Auto Save Settings constructor.

Implementation

const AutoSaveSettings({
  required this.photos,
  required this.videos,
  this.videoMaxSize,
}) : super._();