BsNavbar constructor

const BsNavbar({
  1. Key? key,
  2. BsNavbarStyle style = BsNavbarStyle.style_1,
  3. BsNavbarSize size = BsNavbarSize.md,
  4. BsNavBrand? brand,
  5. EdgeInsetsGeometry? margin,
  6. Widget? child,
})

If style isEmpty, system will automatically set style to BsNavbarStyle.style_1 If size isEmpty, system will automatically set style to BsNavbarSize.md

Implementation

const BsNavbar({
  Key? key,
  this.style = BsNavbarStyle.style_1,
  this.size = BsNavbarSize.md,
  this.brand,
  this.margin,
  this.child,
}) : super(key: key);