SubscriptionScheduleCurrentPhase constructor

const SubscriptionScheduleCurrentPhase({
  1. required DateTime endDate,
  2. required DateTime startDate,
})

Object representing the start and end dates for the current phase of the subscription schedule, if it is `active`.

Implementation

const SubscriptionScheduleCurrentPhase({
  required this.endDate,
  required this.startDate,
});