isButton property
Whether the owning RenderObject is a button (true) or not (false).
Implementation
bool get isButton => _flags.isButton;
Implementation
set isButton(bool value) {
_flags = _flags.copyWith(isButton: value);
_hasBeenAnnotated = true;
}