CreateBillingPriceRequest constructor

CreateBillingPriceRequest({
  1. required String planId,
  2. String currency = 'USD',
  3. required int amount,
  4. int? annualMonthlyAmount,
  5. String? description,
})

Returns a new CreateBillingPriceRequest instance.

Implementation

CreateBillingPriceRequest({
  required this.planId,
  this.currency = 'USD',
  required this.amount,
  this.annualMonthlyAmount,
  this.description,
});