avoid_return_types_on_setters
Avoid return types on setters.
This rule is available as of Dart 2.0.0.
Rule sets: recommended, flutter
This rule has a quick fix available.
Details
#AVOID return types on setters.
As setters do not return a value, declaring the return type of one is redundant.
BAD:
dart
void set speed(int ms);
GOOD:
dart
set speed(int ms);
Usage
#To enable the avoid_return_types_on_setters
rule, add avoid_return_types_on_setters
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- avoid_return_types_on_setters
Unless stated otherwise, the documentation on this site reflects Dart 3.5.3. Page last updated on 2024-07-03. View source or report an issue.