toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final screenDensity = this.screenDensity;
  final supportedAbis = this.supportedAbis;
  final supportedLocales = this.supportedLocales;
  return {
    'screenDensity': ?screenDensity,
    'supportedAbis': ?supportedAbis,
    'supportedLocales': ?supportedLocales,
  };
}