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