MmAddOn constructor

MmAddOn({
  1. String? id,
  2. String? name,
  3. String? displayName,
  4. String? pricePerSeat,
})

Returns a new MmAddOn instance.

Implementation

MmAddOn({
  this.id,
  this.name,
  this.displayName,
  this.pricePerSeat,
});