toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deviceSettings = this.deviceSettings;
  final powerButtonActions = this.powerButtonActions;
  final statusBar = this.statusBar;
  final systemErrorWarnings = this.systemErrorWarnings;
  final systemNavigation = this.systemNavigation;
  return {
    'deviceSettings': ?deviceSettings,
    'powerButtonActions': ?powerButtonActions,
    'statusBar': ?statusBar,
    'systemErrorWarnings': ?systemErrorWarnings,
    'systemNavigation': ?systemNavigation,
  };
}