BootstrapContainer constructor

BootstrapContainer({
  1. Key? key,
  2. required List<Widget> children,
  3. bool fluid = false,
  4. BoxDecoration? decoration,
  5. EdgeInsets? padding,
})

Implementation

BootstrapContainer({
  Key? key,
  required this.children,
  this.fluid = false,
  this.decoration,
  this.padding,
}) : super(key: key);