toggled property

bool get toggled

Returns the logical negation of this value.

true.toggled  // false
false.toggled // true

Implementation

bool get toggled => !this;