PropertyBuilder constructor

const PropertyBuilder({
  1. Key? key,
  2. required String property,
  3. bool underline = false,
  4. Widget? value,
  5. required String type,
  6. List<Widget> children = const [],
})

Implementation

const PropertyBuilder({
  super.key,
  required this.property,
  this.underline = false,
  this.value,
  required this.type,
  this.children = const [],
});