toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appIconId = this.appIconId;
final appName = this.appName;
final fullDescription = this.fullDescription;
final languageCode = this.languageCode;
final screenshotId = this.screenshotId;
final shortDescription = this.shortDescription;
final videoLink = this.videoLink;
return {
'appIconId': ?appIconId,
'appName': ?appName,
'fullDescription': ?fullDescription,
'languageCode': ?languageCode,
'screenshotId': ?screenshotId,
'shortDescription': ?shortDescription,
'videoLink': ?videoLink,
};
}