pageUrl property

String? get pageUrl

The URL of the page where the menu item was clicked. This property is not set if the click occured in a context where there is no current page, such as in a launcher context menu.

Implementation

String? get pageUrl => _wrapped.pageUrl;
set pageUrl (String? v)

Implementation

set pageUrl(String? v) {
  _wrapped.pageUrl = v;
}