solid-software / solid_lints

🟧 Lints for Dart and Flutter based on software industry standards and best practices.
Other
36 stars 17 forks source link

New lint: avoid_final_with_getter #149

Closed danylo-safonov-solid closed 2 months ago

danylo-safonov-solid commented 3 months ago
final X _x = ...;

X get x => _x;

is functionally the same to

final x = ...;