toggled property
bool
get
toggled
Returns the logical negation of this value.
true.toggled // false
false.toggled // true
Implementation
bool get toggled => !this;
Returns the logical negation of this value.
true.toggled // false
false.toggled // true
bool get toggled => !this;