MmSubscription constructor

MmSubscription({
  1. String? id,
  2. String? customerId,
  3. String? productId,
  4. List<String> addOns = const [],
  5. int? startAt,
  6. int? endAt,
  7. int? createAt,
  8. int? seats,
  9. String? dns,
})

Returns a new MmSubscription instance.

Implementation

MmSubscription({
  this.id,
  this.customerId,
  this.productId,
  this.addOns = const [],
  this.startAt,
  this.endAt,
  this.createAt,
  this.seats,
  this.dns,
});