Entitlement constructor

Entitlement({
  1. required String name,
  2. required EntitlementUnit unit,
  3. bool? allowCheckIn,
  4. int? maxCount,
  5. bool? overage,
  6. String? value,
})

Implementation

Entitlement({
  required this.name,
  required this.unit,
  this.allowCheckIn,
  this.maxCount,
  this.overage,
  this.value,
});