avoid_single_cascade_in_expression_statements
Avoid single cascade in expression statements.
This rule is available as of Dart 2.0.
Rule sets: recommended, flutter
This rule has a quick fix available.
Details
#AVOID single cascade in expression statements.
BAD:
dart
o..m();
GOOD:
dart
o.m();
Usage
#To enable the avoid_single_cascade_in_expression_statements
rule, add avoid_single_cascade_in_expression_statements
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- avoid_single_cascade_in_expression_statements
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.