toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final architecture = this.architecture;
  final keylockerConfigured = this.keylockerConfigured;
  final keylockerSupported = this.keylockerSupported;
  final maxClockSpeed = this.maxClockSpeed;
  final model = this.model;
  return {
    'architecture': ?architecture,
    'keylockerConfigured': ?keylockerConfigured,
    'keylockerSupported': ?keylockerSupported,
    'maxClockSpeed': ?maxClockSpeed,
    'model': ?model,
  };
}