BsFormGroup constructor

const BsFormGroup({
  1. Key? key,
  2. Widget? label,
  3. Widget? child,
  4. TextStyle? textStyle,
  5. EdgeInsetsGeometry margin = const EdgeInsets.only(bottom: 10.0),
  6. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
})

Implementation

const BsFormGroup({
  Key? key,
  this.label,
  this.child,
  this.textStyle,
  this.margin = const EdgeInsets.only(bottom: 10.0),
  this.crossAxisAlignment = CrossAxisAlignment.start,
}) : super(key: key);