void_checks
Don't assign to void
.
This rule is available as of Dart 2.0.
Rule sets: core, recommended, flutter
Details
#DON'T assign to void
.
BAD:
dart
class A<T> {
T value;
void test(T arg) { }
}
void main() {
A<void> a = A<void>();
a.value = 1; // LINT
a.test(1); // LINT
}
Usage
#To enable the void_checks
rule, add void_checks
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- void_checks
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.