toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final addOnType = this.addOnType;
final description = this.description;
final helpUrl = this.helpUrl;
final postInstallTipUrl = this.postInstallTipUrl;
final reportIssueUrl = this.reportIssueUrl;
final title = this.title;
return {
'addOnType': ?addOnType,
'description': ?description,
'helpUrl': ?helpUrl,
'postInstallTipUrl': ?postInstallTipUrl,
'reportIssueUrl': ?reportIssueUrl,
'title': ?title,
};
}