use_setters_to_change_properties
Use a setter for operations that conceptually change a property.
This rule is available as of Dart 2.0.
Details
#DO use a setter for operations that conceptually change a property.
BAD:
dart
rectangle.setWidth(3);
button.setVisible(false);
GOOD:
dart
rectangle.width = 3;
button.visible = false;
Usage
#To enable the use_setters_to_change_properties
rule, add use_setters_to_change_properties
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- use_setters_to_change_properties
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.