Sub2ApiAdminChannelTimePricingInput constructor

Sub2ApiAdminChannelTimePricingInput({
  1. required String timezone,
  2. required List<Sub2ApiAdminChannelTimePricingPeriod> periods,
  3. bool weekdaysOnly = false,
})

Implementation

Sub2ApiAdminChannelTimePricingInput({
  required this.timezone,
  required List<Sub2ApiAdminChannelTimePricingPeriod> periods,
  this.weekdaysOnly = false,
}) : periods = List.unmodifiable(periods);