EditorBase<T> constructor
const
EditorBase<T> ({
- Key? key,
- required List<
Inspectable> owners, - required String propertyName,
- Object? customData,
- void onUpdatedProperty(
- dynamic value
Creates an EditorBase.
owners and propertyName are required; all other parameters are
optional.
Implementation
const EditorBase({
this.key,
required this.owners,
required this.propertyName,
this.customData,
this.onUpdatedProperty,
});