InspectableProperty<T> constructor
InspectableProperty<T> ({
- required String name,
- required T? getValue(
- Inspectable obj
- void setValue(
- Inspectable obj,
- dynamic value,
- Object? customData
- List<
T> values()?, - (T, T)? clamp,
- bool readOnly = false,
- bool nullable = false,
- List<
InspectableProperty> getSubProperties(- Inspectable obj
- String? customEditor,
Implementation
InspectableProperty({
required this.name,
required this.getValue,
this.setValue,
this.values,
this.clamp,
this.readOnly = false,
this.nullable = false,
this.getSubProperties,
this.customEditor,
});