EntitlementValue constructor

EntitlementValue({
  1. bool? booleanValue,
  2. double? doubleValue,
  3. int? integerValue,
  4. String? stringValue,
})

Implementation

EntitlementValue({
  this.booleanValue,
  this.doubleValue,
  this.integerValue,
  this.stringValue,
});