FieldGroup constructor

const FieldGroup({
  1. required List<Widget> children,
  2. InputDecoration? decoration,
  3. EdgeInsets padding = const EdgeInsets.all(8),
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.stretch,
  5. bool edit = true,
  6. String? labelText,
  7. Key? key,
})

Implementation

const FieldGroup({
  required this.children,
  this.decoration,
  this.padding = const EdgeInsets.all(8),
  this.crossAxisAlignment = CrossAxisAlignment.stretch,
  this.edit = true,
  this.labelText,
  super.key,
});