currentFolderId property

String currentFolderId

Implementation

String get currentFolderId => _getAttribute<String>(kCurrentFolderId, '');
void currentFolderId=(String? x)

pass null to remove key from attributes

Implementation

set currentFolderId(String? x) => (x == null)
    ? _attributes.remove(kCurrentFolderId)
    : _attributes[kCurrentFolderId] = x;