currentPresentationPath property

String? currentPresentationPath

Implementation

String? get currentPresentationPath => _currentPresentationPath;
void currentPresentationPath=(String? p)

Implementation

set currentPresentationPath(String? p) {
  if (p == _currentPresentationPath) return;
  _currentPresentationPath = p;
  updateWith('presentation');
}