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