toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final recoveredDeviceCount = this.recoveredDeviceCount;
  final totalDeviceCount = this.totalDeviceCount;
  final versionCode = this.versionCode;
  return {
    'recoveredDeviceCount': ?recoveredDeviceCount,
    'totalDeviceCount': ?totalDeviceCount,
    'versionCode': ?versionCode,
  };
}