copyWith method

ScopeAutosaveSettings copyWith({
  1. bool? autosavePhotos,
  2. bool? autosaveVideos,
  3. int? maxVideoFileSize,
})

Implementation

ScopeAutosaveSettings copyWith({
  bool? autosavePhotos,
  bool? autosaveVideos,
  int? maxVideoFileSize,
}) => ScopeAutosaveSettings(
  autosavePhotos: autosavePhotos ?? this.autosavePhotos,
  autosaveVideos: autosaveVideos ?? this.autosaveVideos,
  maxVideoFileSize: maxVideoFileSize ?? this.maxVideoFileSize,
);