PIBottomNavigationBarButton constructor

const PIBottomNavigationBarButton({
  1. Key? key,
  2. required String content,
  3. required Function onPressed,
  4. Color? backgroundColor,
  5. Color? color,
  6. Function? onLongPress,
})

Implementation

const PIBottomNavigationBarButton({
  Key? key,
  required this.content,
  required this.onPressed,
  this.backgroundColor,
  this.color,
  this.onLongPress,
}) : super(key: key);