toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deviceRam = this.deviceRam;
final excludedDeviceIds = this.excludedDeviceIds;
final forbiddenSystemFeatures = this.forbiddenSystemFeatures;
final includedDeviceIds = this.includedDeviceIds;
final requiredSystemFeatures = this.requiredSystemFeatures;
final systemOnChips = this.systemOnChips;
return {
'deviceRam': ?deviceRam,
'excludedDeviceIds': ?excludedDeviceIds,
'forbiddenSystemFeatures': ?forbiddenSystemFeatures,
'includedDeviceIds': ?includedDeviceIds,
'requiredSystemFeatures': ?requiredSystemFeatures,
'systemOnChips': ?systemOnChips,
};
}