PathBar constructor

const PathBar({
  1. Key? key,
  2. required String currentPath,
  3. required List<String> pathHistory,
  4. required VoidCallback onNavigateUp,
  5. required VoidCallback onRefresh,
  6. required bool isLoading,
  7. required int currentDirFileCount,
  8. required String friendlyFolderName,
})

Implementation

const PathBar({
  super.key,
  required this.currentPath,
  required this.pathHistory,
  required this.onNavigateUp,
  required this.onRefresh,
  required this.isLoading,
  required this.currentDirFileCount,
  required this.friendlyFolderName,
});