horizontalGroup static method
Implementation
static FlutstrapFormGroup horizontalGroup({
required List<Widget> children,
String? label,
double spacing = 16.0,
}) {
return FlutstrapFormGroup(
children: children,
label: label,
layout: FSFormGroupLayout.horizontal,
spacing: spacing,
);
}