UserSettings.fromJson constructor

UserSettings.fromJson(
  1. Map<String, dynamic> json
)

Implementation

UserSettings.fromJson(Map<String, dynamic> json) {
  theme = json['theme'];
  useSystemTheme = json['use_system_theme'];
}