ValueProperty constructor

ValueProperty({
  1. required String name,
  2. String? description,
  3. required SimpleValue type,
  4. List? enumValues,
})

Implementation

ValueProperty({required super.name, super.description, required this.type, this.enumValues});