toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bannerImageUrl = this.bannerImageUrl;
final eligibleForSubscription = this.eligibleForSubscription;
final imageUrl = this.imageUrl;
final isComplete = this.isComplete;
final seriesFormatType = this.seriesFormatType;
final seriesId = this.seriesId;
final seriesSubscriptionReleaseInfo = this.seriesSubscriptionReleaseInfo;
final seriesType = this.seriesType;
final subscriptionId = this.subscriptionId;
final title = this.title;
return {
'bannerImageUrl': ?bannerImageUrl,
'eligibleForSubscription': ?eligibleForSubscription,
'imageUrl': ?imageUrl,
'isComplete': ?isComplete,
'seriesFormatType': ?seriesFormatType,
'seriesId': ?seriesId,
'seriesSubscriptionReleaseInfo': ?seriesSubscriptionReleaseInfo,
'seriesType': ?seriesType,
'subscriptionId': ?subscriptionId,
'title': ?title,
};
}