onLeftEvent method
Implementation
@override
KeyEventResult onLeftEvent(FocusNode node, KeyDownEvent event) {
if (policy.inDirection(node, TraversalDirection.left)) {
return onLeft?.call(node, event, false) ?? KeyEventResult.handled;
}
return onLeft?.call(node, event, true) ?? KeyEventResult.ignored;
}