GetStorage Patterns
Installation
SKILL.md
GetStorage Patterns
Initialization
// main.dart
void main() async {
await GetStorage.init();
runApp(MyApp());
}
Storage Service Pattern
class StorageService {
final GetStorage _box;
StorageService() : _box = GetStorage();