BasicAppBar constructor

const BasicAppBar({
  1. Key? key,
  2. required String title,
  3. bool hasBackground = false,
  4. bool isArrowWhite = false,
  5. IconData? icon,
  6. Color? iconColor,
  7. dynamic onPressed()?,
  8. dynamic onBack()?,
  9. dynamic onMenuPressed()?,
  10. String? tooltip,
})

Implementation

const BasicAppBar(
    {super.key,
    required this.title,
    this.hasBackground = false,
    this.isArrowWhite = false,
    this.icon,
    this.iconColor,
    this.onPressed,
    this.onBack,
    this.onMenuPressed,
    this.tooltip});