navigateToPath method

void navigateToPath(
  1. String path
)

Navigate to a specific path in the file browser.

Implementation

void navigateToPath(String path) {
  setState(() {
    currentPath = path;
    refreshFiles();
  });
}