PropertyWidget constructor

const PropertyWidget({
  1. Key? key,
  2. required PropertyBase property,
})

Creates a widget that delegates its build to a callback.

Implementation

const PropertyWidget({
  super.key,
  // required this.builder,
  required this.property,
});