Group: style
Maturity: stable
Dart SDK: >= 2.0.0 • (Linter v0.1.31)
Since info is static, may be staleDO use a setter for operations that conceptually change a property.
BAD:
rectangle.setWidth(3);
button.setVisible(false);
GOOD:
rectangle.width = 3;
button.visible = false;
To enable the use_setters_to_change_properties
lint,
add use_setters_to_change_properties
under linter > rules in your
analysis_options.yaml
file:
linter:
rules:
- use_setters_to_change_properties