PIBottomNavigationBar constructor

const PIBottomNavigationBar({
  1. Key? key,
  2. required List<Widget> children,
  3. Color? backgroundColor,
})

Implementation

const PIBottomNavigationBar({
  Key? key,
  required this.children,
  this.backgroundColor,
}) : super(key: key);