Added option to show folders always on top in files
This commit is contained in:
16
lib/storage/file/fileSettings.g.dart
Normal file
16
lib/storage/file/fileSettings.g.dart
Normal file
@ -0,0 +1,16 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'fileSettings.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
FileSettings _$FileSettingsFromJson(Map<String, dynamic> json) => FileSettings(
|
||||
sortFoldersToTop: json['sortFoldersToTop'] as bool,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$FileSettingsToJson(FileSettings instance) =>
|
||||
<String, dynamic>{
|
||||
'sortFoldersToTop': instance.sortFoldersToTop,
|
||||
};
|
Reference in New Issue
Block a user