onExpand property
The handler for SemanticsAction.expand.
This is a request to expand the currently focused node.
Implementation
VoidCallback? get onExpand => _onExpand;
Implementation
set onExpand(VoidCallback? value) {
assert(value != null);
_addArgumentlessAction(SemanticsAction.expand, value!);
_onExpand = value;
}