class SettingsContent { const SettingsContent({ required this.notificationsEnabled, required this.hapticsEnabled, required this.fingerEnabled, required this.appVersionLabel, }); final bool notificationsEnabled; final bool hapticsEnabled; final bool fingerEnabled; final String appVersionLabel; }