dart-modern-features

Guidelines for using modern Dart features (v3.0 - v3.10) such as Records, Pattern Matching, Switch Expressions, Extension Types, Class Modifiers, Wildcards, Null-Aware Elements, and Dot Shorthands.

By kevmoo · 350 installs

npx skills add kevmoo/dash_skills --skill dart-modern-features

Source repository · Upstream listing

Dart Modern Features 1. When to use this skill Use this skill when: Writing or reviewing Dart code targeting Dart 3.0 or later. Refactoring legacy Dart code to use modern, concise, and safe features. Looking for idiomatic ways to handle multiple return values, deep data extraction, or exhaustive checking. When NOT to use (Abstention Guardrails) Do NOT apply modern features or refactor code when: SDK Constraint < 3.0.0 : The package's pubspec.yaml specifies an SDK constraint that supports Dart 2.x (e.g., sdk: ' =2.19.0 <4.0.0' ). Refactoring to Dart 3 features will introduce syntax errors for Dart 2 users. Single Variable Type Promotion : Checking a single variable or parameter where standard if (x is Foo) is clearer, more concise, and avoids creating unnecessary alias variables compared to if (x case final Foo f) . Non Algebraic Boolean Branching : Branching on independent boolean flags, side effecting conditions, or early exit guard clauses ( if (!condition) return; ). Do not force these into switch expressions. Deep Expression Nesting : Complex multi step operations where converting a switch statement into a deeply nested switch expression obscures intent, harms debugger step through capability, or hurts stack trace readability. Discovery To find candidates for modernization: Switch Expressions Search for switch statements where every case assigns to the same variable or returns: Regex : switch\s \([^)]+\)\s \{\s case Pattern Matching Candidates Search for manual map or JSON property extraction and type checking: Regex : containsKey\(['"][^'"]+['"]\) Regex : json\[['"][^'"]+['"]\]\s+is\s+ Null Aware Elements Search for collection if statements checking for null: Regex : if\s \(\w+\s !=\s null\)\s \w+ Digit Separators Search for long numbers without separators: Regex : \b\d{6,}\b (Matches numbers with 6 or more digits). 2. Features Records Use records as anonymous, immutable, aggregate structures to bundle multiple objects without defining a custom class. Prefer them for returning multiple values from a function or grouping related data temporarily. Avoid: Creating a dedicated class for simple multiple value returns. Prefer: Using records to bundle types seamlessly on the fly. Patterns and Pattern Matching Use patterns to destructure complex data into local variables and match against specific shapes or values. Use them in switch , if case , or variable declarations to unpack data directly. Avoid: Manually checking types, nulls, and keys for data extraction. Prefer: Combining type checking, validation, and assignment into a single statement. Switch Expressions Use switch expressions to return a value directly, eliminating bulky case and break statements. Avoid: Using switch statements where every branch simply returns or assigns a value. Prefer: Returning the evaluated expression directly using the = syntax. Class Modifiers Use class modifiers ( sealed , final , base , interface ) to restrict how classes can be used outside their defines library. Prefer sealed for defining closed families of subtypes to enable exhaustive checking. Avoid: Using open abstract classes when the set of subclasses is known and fixed. Prefer: Using sealed to guarantee to the compiler that all cases are covered. Extension Types Use extension types for a zero cost wrapper around an existing type. Use them to restrict operations or add custom behavior without runtime overhead. Avoid: Allocating new wrapper objects just for domain specific logic or type safety. Prefer: Using extension types which compile down to the underlying type at runtime. Digit Separators Use underscores ( ) in number literals strictly to improve visual readability of large numeric values. Avoid: Long number literals that are difficult to read at a glance. Prefer: Using underscores to separate thousands or other groupings. Wildcard Variables Use wildcards ( ) as non binding variables or parameters to explicitly signal that a value is intentionally unused. Avoid: Inventing clunky, distinct variable names to avoid "unused variable" warnings. Prefer: Explicitly dropping the binding with an underscore. Null Aware Elements Use null aware elements ( ? ) inside collection literals to conditionally include items only if they evaluate to a non null value. Avoid: Using collection if statements for simple null checks. Prefer: Using the ? prefix inline. Dot Shorthands Use dot shorthands to omit the explicit type name when it can be confidently inferred from context, such as with enums or static fields. Avoid: Fully qualifying type names when the type is obvious from the context. Prefer: Reducing visual noise with inferred shorthand. Pragmatic Balance: When NOT to Over Patternize Pattern matching and switch expressions should simplify code, not add syntactic overhead. 1. Prefer is Type Promotion over if case for Single Variables If you only need to check a type or promote a variable, use standard is checks instead of if case or case patterns that introduce shadow aliases. Avoid: Prefer: 2. Consolidate Nullable Types in Switch Arms When mapping or returning values in a switch expression where both null and a type T are valid and passed through, match the nullable type T? directly rather than creating redundant null arms. Avoid: Prefer: Related Skills [dart best practices] : General code style and foundational Dart idioms that predate or complement the modern syntax features. [dart best practices]: https://github.com/kevmoo/dash skills/blob/main/skills/dart best practices/SKILL.md