EditorBuilder typedef

EditorBuilder = EditorBase Function({Object? customData, Key? key, void onUpdatedProperty(dynamic value)?, required List<Inspectable> owners, required String propertyName})

Implementation

typedef EditorBuilder =
    EditorBase Function({
      Key? key,
      required List<Inspectable> owners,
      required String propertyName,
      Object? customData,
      void Function(dynamic value)? onUpdatedProperty,
    });