isTrue method
Checks if the boolean value is true.
Returns true
if the value is true.
Example:
bool value = true;
print(value.isTrue()); // true
Implementation
bool isTrue() => this;
Checks if the boolean value is true.
Returns true
if the value is true.
Example:
bool value = true;
print(value.isTrue()); // true
bool isTrue() => this;