toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cpuMake = this.cpuMake;
  final cpuModel = this.cpuModel;
  final deviceClass = this.deviceClass;
  final glEsVersion = this.glEsVersion;
  final manufacturer = this.manufacturer;
  final nativePlatform = this.nativePlatform;
  final productName = this.productName;
  final ramMb = this.ramMb;
  final screenDensityDpi = this.screenDensityDpi;
  final screenHeightPx = this.screenHeightPx;
  final screenWidthPx = this.screenWidthPx;
  return {
    'cpuMake': ?cpuMake,
    'cpuModel': ?cpuModel,
    'deviceClass': ?deviceClass,
    'glEsVersion': ?glEsVersion,
    'manufacturer': ?manufacturer,
    'nativePlatform': ?nativePlatform,
    'productName': ?productName,
    'ramMb': ?ramMb,
    'screenDensityDpi': ?screenDensityDpi,
    'screenHeightPx': ?screenHeightPx,
    'screenWidthPx': ?screenWidthPx,
  };
}