toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cancelTime = this.cancelTime;
final currentReleaseInfo = this.currentReleaseInfo;
final nextReleaseInfo = this.nextReleaseInfo;
final seriesSubscriptionType = this.seriesSubscriptionType;
return {
'cancelTime': ?cancelTime,
'currentReleaseInfo': ?currentReleaseInfo,
'nextReleaseInfo': ?nextReleaseInfo,
'seriesSubscriptionType': ?seriesSubscriptionType,
};
}