currentContextMenu property
dynamic
get
currentContextMenu
Gets or sets the currently showing context menu, or null if there is none. This is typically only set in #showContextMenu and not by the user. It is also typically set to null in #hideContextMenu.
Implementation
_i2.dynamic get currentContextMenu => _i4.getProperty(
this,
'currentContextMenu',
);
set
currentContextMenu
(dynamic value)
Implementation
set currentContextMenu(_i2.dynamic value) {
_i4.setProperty(
this,
'currentContextMenu',
value,
);
}