enabled property
Whether the button is enabled or disabled. Buttons are disabled by default. To enable a button, set onPressed or onLongPress to a non-null value.
Implementation
bool get enabled => onPressed != null || onLongPress != null;
Whether the button is enabled or disabled. Buttons are disabled by default. To enable a button, set onPressed or onLongPress to a non-null value.
bool get enabled => onPressed != null || onLongPress != null;