ConvexBottomAppBar constructor

ConvexBottomAppBar({
  1. Key? key,
  2. dynamic onClickParent(
    1. int
    )?,
  3. required List<ConvexBottomAppBarItem>? convexBottomAppBarItems,
  4. required bool isUseTitle,
  5. TextStyle? titleTextStyle,
  6. Color? backgroundColor,
  7. Color? selectedColor,
  8. Color? unselectedColor,
})

Implementation

ConvexBottomAppBar(
    {Key? key,
    this.onClickParent,
    required this.convexBottomAppBarItems,
    required this.isUseTitle,
    this.titleTextStyle,
    this.backgroundColor,
    this.selectedColor,
    this.unselectedColor})
    : super(key: key);