isTrue function Null safety
- bool? value
True if the boolean value
is true
since 0.0.1
Implementation
bool isTrue(final bool? value) => value == true;
True if the boolean value
is true
since 0.0.1
bool isTrue(final bool? value) => value == true;