toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final androidId = this.androidId;
  final device = this.device;
  final latestBuildFingerprint = this.latestBuildFingerprint;
  final maker = this.maker;
  final managementType = this.managementType;
  final model = this.model;
  final policy = this.policy;
  final product = this.product;
  final report = this.report;
  final retailBrand = this.retailBrand;
  final sdkVersion = this.sdkVersion;
  return {
    'androidId': ?androidId,
    'device': ?device,
    'latestBuildFingerprint': ?latestBuildFingerprint,
    'maker': ?maker,
    'managementType': ?managementType,
    'model': ?model,
    'policy': ?policy,
    'product': ?product,
    'report': ?report,
    'retailBrand': ?retailBrand,
    'sdkVersion': ?sdkVersion,
  };
}