ApplicationProperty constructor

ApplicationProperty({
  1. List<String>? allowedValues,
  2. String? defaultValue,
  3. String? desc,
  4. String? example,
  5. String? id,
  6. String? key,
  7. String? name,
  8. String? type,
  9. String? value,
})

Implementation

ApplicationProperty(
    {List<String>? allowedValues,
    this.defaultValue,
    this.desc,
    this.example,
    this.id,
    this.key,
    this.name,
    this.type,
    this.value})
    : allowedValues = allowedValues ?? [];