toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = Map<String, dynamic>();
  data['theme'] = this.theme;
  data['use_system_theme'] = this.useSystemTheme;
  return data;
}