toJson method

Map<String, dynamic> toJson()

Implementation

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