What problem does it solve? Dart projects accumulate static analysis errors around null safety, type mismatches, and invalid method overrides that block compilation and testing. This Skill provides a structured workflow to identify, fix, and verify these errors systematically. ## Core Features & Use Cases - Static Analysis Workflow: Runs dart analyze, applies dart fix for automated corrections, then resolves remaining errors manually with conditional guidance per error type. - Type System Guidance: Enforces Dart's sound type system with rules for generics, downcasting, covariant overrides, and strict-casts configuration. - Null Safety Resolution: Provides concrete patterns for nullable types, late initialization, and null assertions to eliminate null safety errors. - Use Case: After upgrading a Flutter app's dependencies, dart analyze reports 40 errors. Use this Skill to apply automated fixes, then resolve remaining null safety and override errors, and verify with dart analyze and dart test. ## Quick Start Run dart analyze on my project and help me fix all the reported static analysis errors step by step.