BsNavbarStyle constructor

const BsNavbarStyle({
  1. BorderRadiusGeometry? borderRadius,
  2. Color? backgroundColor = const Color(0xffe7e7e7),
})

If backgroundColor isEmpty, system will set automatically backgroundColor to default

Implementation

const BsNavbarStyle({
  this.borderRadius,
  this.backgroundColor = const Color(0xffe7e7e7),
});