lastOpenDirectory top-level property

String? get lastOpenDirectory

The last directory used for file operations, or null if none set.

Implementation

String? get lastOpenDirectory => _lastOpenDirectory;
set lastOpenDirectory (String? value)

Updates the last-used directory for file picker dialogs.

Implementation

set lastOpenDirectory(String? value) => _lastOpenDirectory = value;