In Dart, local variables don't have a concept of "private visibility" and should not start with an underscore.
== Why is this an issue?
The underscore prefix is used in Dart to indicate members and top-level declarations that are private.
The compiler enforces access restrictions so that private elements can only be accessed from within the library in which they are declared.
Because local variables and parameters are only accessible within the scope in which they are declared, and cannot be exposed to other libraries, the private accessibility scope doesn't apply to them. Using an underscore prefix for local variables suggests otherwise and can be misleading.
This rule applies to local variables and parameters of:
Unused parameters are typically named ``++__++``, ``++___++``, etc. to indicate that they are intentionally unused. This is a common practice and is not considered a violation of this rule.