Subscription constructor

Subscription({
  1. required String tierId,
  2. required bool digital,
  3. required bool physical,
  4. required bool adFree,
  5. required String title,
  6. required bool renew,
  7. required int duration,
  8. required String durationText,
})

Implementation

Subscription({
  required this.tierId,
  required this.digital,
  required this.physical,
  required this.adFree,
  required this.title,
  required this.renew,
  required this.duration,
  required this.durationText,
});