startCreating method

void startCreating(
  1. String parentPath,
  2. bool folder
)

Starts the creation process of a new folder or file

Implementation

void startCreating(String parentPath, bool folder) {
  newEntryPath = parentPath;
  isFolderCreation = folder;
  notifyListeners();
}