dart format
This commit is contained in:
@@ -11,8 +11,13 @@ class FileSettings {
|
||||
bool ascending;
|
||||
SortOption sortBy;
|
||||
|
||||
FileSettings({required this.sortFoldersToTop, required this.ascending, required this.sortBy});
|
||||
FileSettings({
|
||||
required this.sortFoldersToTop,
|
||||
required this.ascending,
|
||||
required this.sortBy,
|
||||
});
|
||||
|
||||
factory FileSettings.fromJson(Map<String, dynamic> json) => _$FileSettingsFromJson(json);
|
||||
factory FileSettings.fromJson(Map<String, dynamic> json) =>
|
||||
_$FileSettingsFromJson(json);
|
||||
Map<String, dynamic> toJson() => _$FileSettingsToJson(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user