use_setters_to_change_properties

Group: style

Maturity: stable

Dart SDK: >= 2.0.0 • (Linter v0.1.31)

Since info is static, may be stale

View all Lint Rules

Using the Linter

DO use a setter for operations that conceptually change a property.

BAD:

rectangle.setWidth(3);
button.setVisible(false);

GOOD:

rectangle.width = 3;
button.visible = false;

Usage

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