isFocusable property
Whether the owning RenderObject can hold the input focus.
Implementation
bool get isFocusable => _flags.isFocusable;Implementation
set isFocusable(bool value) {
  _flags = _flags.copyWith(isFocusable: value);
  _hasBeenAnnotated = true;
}