Inspector constructor

const Inspector({
  1. Key? key,
  2. Map<Type, EditorBuilder>? editors,
  3. List<Inspectable>? objects,
  4. Object? customData,
  5. void onUpdatedProperty(
    1. List<InspectableProperty> properties,
    2. dynamic value
    )?,
})

Implementation

const Inspector({
  super.key,
  Map<Type, EditorBuilder>? editors,
  List<Inspectable>? objects,
  this.customData,
  this.onUpdatedProperty,
}) : objects = objects ?? const [],
     editors = editors ?? const {};