PropertyEditorBuilder<T> typedef

PropertyEditorBuilder<T> = Widget Function(Property<T> property, PropertyChanged onChanged, Key? key)

Signature for a function that creates the property editor widget.

Used by Property.withBuilder.

Implementation

typedef PropertyEditorBuilder<T> = Widget Function(
  Property<T> property,
  PropertyChanged onChanged,
  Key? key,
);