ValueProperty constructor
ValueProperty({
- required String name,
- String? description,
- required SimpleValue type,
- List? enumValues,
- bool required = false,
Implementation
ValueProperty({required super.name, super.description, required this.type, this.enumValues, this.required = false});