File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class FileManagerController extends ChangeNotifier {
1212 /// getSorted by returns the current sorting type of the FileManager
1313 SortBy get getSortedBy => _short;
1414 // TODO: [Documentation]
15- /// setSortedBy is used to set the sorting type.
15+ /// setSortedBy is used to set the sorting type.
1616 set setSortedBy (SortBy sortType) {
1717 _short = sortType;
1818 notifyListeners ();
Original file line number Diff line number Diff line change @@ -215,7 +215,8 @@ class _FileManagerState extends State<FileManager> {
215215 @override
216216 void initState () {
217217 super .initState ();
218- /// add the listner to the contoller
218+
219+ /// add the listner to the contoller
219220 widget.controller.addListener (() {
220221 path.value = widget.controller.getCurrentPath;
221222 sort.value = widget.controller.getSortedBy;
You can’t perform that action at this time.
0 commit comments