AppPreferences constructor

const AppPreferences({
  1. required String locale,
  2. required TextSizePreference textSize,
  3. required AppThemeMode themeMode,
  4. required bool notificationsEnabled,
  5. required bool highContrastEnabled,
})

Implementation

const AppPreferences({
  required this.locale,
  required this.textSize,
  required this.themeMode,
  required this.notificationsEnabled,
  required this.highContrastEnabled,
});