toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final appReport = this.appReport;
  final audioStatusReport = this.audioStatusReport;
  final deviceActivityReport = this.deviceActivityReport;
  final deviceId = this.deviceId;
  final networkBandwidthReport = this.networkBandwidthReport;
  final peripheralsReport = this.peripheralsReport;
  return {
    'appReport': ?appReport,
    'audioStatusReport': ?audioStatusReport,
    'deviceActivityReport': ?deviceActivityReport,
    'deviceId': ?deviceId,
    'networkBandwidthReport': ?networkBandwidthReport,
    'peripheralsReport': ?peripheralsReport,
  };
}