prefer_bool_in_asserts
Prefer using a boolean as the assert condition.
This rule has been removed as of the latest Dart releases.
Details
#NOTE: This rule is removed in Dart 3.0.0; it is no longer functional.
DO use a boolean for assert conditions.
Not using booleans in assert conditions can lead to code where it isn't clear what the intention of the assert statement is.
BAD:
assert(() {
f();
return true;
});
GOOD:
assert(() {
f();
return true;
}());
Usage
#To enable the prefer_bool_in_asserts
rule, add prefer_bool_in_asserts
under linter > rules in your analysis_options.yaml
file:
linter:
rules:
- prefer_bool_in_asserts
Unless stated otherwise, the documentation on this site reflects Dart 3.5.4. Page last updated on 2024-07-03. View source or report an issue.