verticalGroup static method

FlutstrapFormGroup verticalGroup({
  1. required List<Widget> children,
  2. String? label,
  3. bool required = false,
})

Implementation

static FlutstrapFormGroup verticalGroup({
  required List<Widget> children,
  String? label,
  bool required = false,
}) {
  return FlutstrapFormGroup(
    children: children,
    label: label,
    required: required,
    layout: FSFormGroupLayout.vertical,
  );
}