negate property

bool negate

Negate the return value of this function.

bool alwaysTrue() => true;
final alwaysFalse = alwaysTrue.negate;

Implementation

bool get negate => !this();