import 'package:isar/isar.dart'; part 'settings.g.dart'; @Collection() class Settings { Settings({ required this.isSoundEnabled, required this.isMusicEnabled, }); Id id = 1; late bool isSoundEnabled; late bool isMusicEnabled; }