toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appId = this.appId;
final appStore = this.appStore;
final endDate = this.endDate;
final linkText = this.linkText;
final startDate = this.startDate;
return {
'appId': ?appId,
'appStore': ?appStore,
'endDate': ?endDate,
'linkText': ?linkText,
'startDate': ?startDate,
};
}