MmProduct constructor

MmProduct({
  1. String? id,
  2. String? name,
  3. String? description,
  4. String? pricePerSeat,
  5. List<MmAddOn> addOns = const [],
})

Returns a new MmProduct instance.

Implementation

MmProduct({
  this.id,
  this.name,
  this.description,
  this.pricePerSeat,
  this.addOns = const [],
});