AutoGroupField constructor

AutoGroupField({
  1. Key? key,
  2. required String id,
  3. required Widget child,
  4. bool showDecorator = false,
  5. String label = "",
  6. bool hidden = false,
})

Implementation

AutoGroupField({
  super.key,
  required super.id,
  required this.child,
  this.showDecorator = false,
  super.label = "",
  super.hidden,
});