Accessibility focusable - Flutter

On Flutter, the focusable property of SemanticsProperties can be used to indicate whether assistive technologies can focus on an element.

Semantics(
  focusable: false,
  child: Widget();
);