BillingCycle constructor
BillingCycle({
- PricingScheme? pricingScheme,
- required Frequency frequency,
- required TenureType tenureType,
- int? sequence,
- int? totalCycles,
Implementation
BillingCycle(
{this.pricingScheme,
required this.frequency,
required this.tenureType,
this.sequence,
this.totalCycles});