toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final compatibleScreens = this.compatibleScreens;
final glEsVersion = this.glEsVersion;
final isScreenRequired = this.isScreenRequired;
final nativePlatforms = this.nativePlatforms;
final requiredSoftwareLibraries = this.requiredSoftwareLibraries;
final requiredSystemFeatures = this.requiredSystemFeatures;
final requiresSmallestWidthDp = this.requiresSmallestWidthDp;
final sdkVersion = this.sdkVersion;
final supportedGlTextures = this.supportedGlTextures;
final supportedScreens = this.supportedScreens;
final use32BitAbi = this.use32BitAbi;
final usesConfigurations = this.usesConfigurations;
return {
'compatibleScreens': ?compatibleScreens,
'glEsVersion': ?glEsVersion,
'isScreenRequired': ?isScreenRequired,
'nativePlatforms': ?nativePlatforms,
'requiredSoftwareLibraries': ?requiredSoftwareLibraries,
'requiredSystemFeatures': ?requiredSystemFeatures,
'requiresSmallestWidthDp': ?requiresSmallestWidthDp,
'sdkVersion': ?sdkVersion,
'supportedGlTextures': ?supportedGlTextures,
'supportedScreens': ?supportedScreens,
'use32BitAbi': ?use32BitAbi,
'usesConfigurations': ?usesConfigurations,
};
}