toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayMode = this.displayMode;
final icons = this.icons;
final name = this.name;
final startUrl = this.startUrl;
final title = this.title;
final versionCode = this.versionCode;
return {
'displayMode': ?displayMode,
'icons': ?icons,
'name': ?name,
'startUrl': ?startUrl,
'title': ?title,
'versionCode': ?versionCode,
};
}