BootstrapPanel constructor

const BootstrapPanel({
  1. Key? key,
  2. BootstrapPanelType type = BootstrapPanelType.defaults,
  3. Widget? header,
  4. Widget? body,
  5. Widget? footer,
  6. EdgeInsetsGeometry padding = const EdgeInsets.all(16.0),
})

Implementation

const BootstrapPanel({
  Key? key,
  this.type = BootstrapPanelType.defaults,
  this.header,
  this.body,
  this.footer,
  this.padding = const EdgeInsets.all(16.0),
}) : super(key: key);