visible property
bool?
get
visible
Whether the item is visible in the menu.
Implementation
bool? get visible => _wrapped.visible;
set
visible
(bool? v)
Implementation
set visible(bool? v) {
_wrapped.visible = v;
}