BootstrapRow constructor

const BootstrapRow({
  1. Key? key,
  2. required List<BootstrapCol> children,
  3. BoxDecoration? decoration,
  4. double? height,
  5. EdgeInsetsGeometry? padding,
  6. EdgeInsetsGeometry? margin,
})

Implementation

const BootstrapRow({
  super.key,
  required this.children,
  this.decoration,
  this.height,
  this.padding,
  this.margin,
});