BottomBar constructor

const BottomBar({
  1. required Component child,
  2. bool safeArea = true,
  3. Key? key,
})

Implementation

const BottomBar({
  required this.child,
  this.safeArea = true,
  super.key,
});