SubscriptionBillingCycleAnchorConfig constructor

const SubscriptionBillingCycleAnchorConfig({
  1. required int dayOfMonth,
  2. int? hour,
  3. int? minute,
  4. int? month,
  5. int? second,
})

The fixed values used to calculate the `billing_cycle_anchor`.

Implementation

const SubscriptionBillingCycleAnchorConfig({
  required this.dayOfMonth,
  this.hour,
  this.minute,
  this.month,
  this.second,
});