toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final lastRebootTime = this.lastRebootTime;
  final lastUpdateCheckTime = this.lastUpdateCheckTime;
  final lastUpdateTime = this.lastUpdateTime;
  final newPlatformVersion = this.newPlatformVersion;
  final newRequestedPlatformVersion = this.newRequestedPlatformVersion;
  final updateState = this.updateState;
  return {
    'lastRebootTime': ?lastRebootTime,
    'lastUpdateCheckTime': ?lastUpdateCheckTime,
    'lastUpdateTime': ?lastUpdateTime,
    'newPlatformVersion': ?newPlatformVersion,
    'newRequestedPlatformVersion': ?newRequestedPlatformVersion,
    'updateState': ?updateState,
  };
}