EditorBase<T> constructor

const EditorBase<T>({
  1. Key? key,
  2. required List<Inspectable> owners,
  3. required String propertyName,
  4. Object? customData,
  5. void onUpdatedProperty(
    1. dynamic value
    )?,
})

Implementation

const EditorBase({
  this.key,
  required this.owners,
  required this.propertyName,
  this.customData,
  this.onUpdatedProperty,
});