Accessibility state - Flutter

With Flutter, you can use Semantics to indicate the accessibility state. The Semantics constructor contains all available options, such as checked, enabled, hidden, selected and toggled, among others.

Semantics(
  checked: true,
  enabled: true,
  hidden: true,
  selected: true,
  toggled: true,
  child: Widget(...)
);