toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final appName = this.appName;
  final featureGraphic = this.featureGraphic;
  final fullDescription = this.fullDescription;
  final icon = this.icon;
  final languageCode = this.languageCode;
  final phoneScreenshots = this.phoneScreenshots;
  final shortDescription = this.shortDescription;
  final tabletRegularScreenshots = this.tabletRegularScreenshots;
  final tabletSmallScreenshots = this.tabletSmallScreenshots;
  final video = this.video;
  return {
    'appName': ?appName,
    'featureGraphic': ?featureGraphic,
    'fullDescription': ?fullDescription,
    'icon': ?icon,
    'languageCode': ?languageCode,
    'phoneScreenshots': ?phoneScreenshots,
    'shortDescription': ?shortDescription,
    'tabletRegularScreenshots': ?tabletRegularScreenshots,
    'tabletSmallScreenshots': ?tabletSmallScreenshots,
    'video': ?video,
  };
}