This'll help with dead_code BAD: ```dart class X { // only used internally void x() { ... } } ``` GOOD: ```dart class X { // only used internally void _x() { ... } } ```
This'll help with dead_code
BAD:
GOOD: