What problem does it solve? Dart projects often 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 and dart fix to detect and automatically resolve standard linting and analysis issues. - Guided Manual Fixes: Provides conditional decision logic for null safety errors, type mismatches, and invalid overrides, including correct use of late, covariant, and explicit generic type annotations. - Verification Feedback Loop: Re-runs the analyzer and test suite to confirm fixes, with guidance for diagnosing runtime TypeError failures caused by bad casts or uninitialized late variables. - Use Case: After upgrading a Flutter app's Dart SDK, dozens of null safety errors appear. Use this Skill to triage each error type, apply the correct fix pattern, and verify the project passes dart analyze and dart test. ## Quick Start Run dart analyze on my project and help me fix all the reported null safety and type errors.