custom-plugin-flutter-skill-database
Installation
SKILL.md
custom-plugin-flutter: Database & Storage Skill
Quick Start - Hive Storage
// Define model
(typeId: 0)
class User {
(0)
final String id;
(1)
final String name;
User({required this.id, required this.name});
}