PandaBar constructor

const PandaBar({
  1. Key? key,
  2. required List<PandaBarButtonData> buttonData,
  3. required dynamic onChange(
    1. dynamic selectedPage
    ),
  4. Color? backgroundColor,
  5. Widget? fabIcon,
  6. List<Color>? fabColors,
  7. VoidCallback? onFabButtonPressed,
  8. Color? buttonColor,
  9. Color? buttonSelectedColor,
})

Implementation

const PandaBar({
  Key? key,
  required this.buttonData,
  required this.onChange,
  this.backgroundColor,
  this.fabIcon,
  this.fabColors,
  this.onFabButtonPressed,
  this.buttonColor,
  this.buttonSelectedColor,
}) : super(key: key);