enabled property

bool enabled

Whether the button is enabled or disabled. Buttons are disabled by default. To enable a button, set its onPressed property to a non-null value.

Implementation

bool get enabled => onPressed != null;