BootstrapRow constructor
      const
      BootstrapRow({ 
    
    
- Key? key,
- required List<BootstrapCol> children,
- BoxDecoration? decoration,
- double? height,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
Implementation
const BootstrapRow({
  super.key,
  required this.children,
  this.decoration,
  this.height,
  this.padding,
  this.margin,
});