toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final matchMyInterests = this.matchMyInterests;
  final moreFromAuthors = this.moreFromAuthors;
  final moreFromSeries = this.moreFromSeries;
  final priceDrop = this.priceDrop;
  final rewardExpirations = this.rewardExpirations;
  return {
    'matchMyInterests': ?matchMyInterests,
    'moreFromAuthors': ?moreFromAuthors,
    'moreFromSeries': ?moreFromSeries,
    'priceDrop': ?priceDrop,
    'rewardExpirations': ?rewardExpirations,
  };
}