Contents
Contents

Use a setter for operations that conceptually change a property.

This rule is available as of Dart 2.0.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