SmoothAppbar constructor

SmoothAppbar({
  1. Key? key,
  2. String? title,
  3. VoidCallback? titleOnTap,
  4. IconData? leftIcon,
  5. IconData? rightIcon,
  6. VoidCallback? leftIconOnPressed,
  7. VoidCallback? rightIconOnPressed,
  8. PreferredSizeWidget? bottom,
})

Implementation

SmoothAppbar({
  super.key,
  this.title,
  this.titleOnTap,
  this.leftIcon,
  this.rightIcon,
  this.leftIconOnPressed,
  this.rightIconOnPressed,
  this.bottom,
});