Paste folders or file paths and copy a ready-made assets list under flutter:. Merge carefully if you already have a flutter: section.
Merge this under your existing flutter: key in pubspec.yaml (do not duplicate the top-level flutter: key).
Paste JSON and get Dart classes with fromJson and toJson for nested objects and lists — no code generation step required.
Open tool →List typed fields and get a data class with copyWith, ==, hashCode, and toString — ideal for immutable UI state.
Open tool →Convert hex (#RGB, #RRGGBB, #AARRGGBB) to Flutter Color(0x…) and Color.fromRGBO(...) for copy-paste into your widgets.
Open tool →