FCCAppBar constructor

const FCCAppBar({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. Widget? leading,
  5. List<Widget>? actions,
  6. Gradient? gradient,
  7. bool isNotificationVisible = true,
  8. int? notificationCount,
  9. VoidCallback? onNotificationTap,
  10. String? profileImagePath,
  11. String? userName,
  12. String? status,
  13. dynamic onProfileTap(
    1. BuildContext
    )?,
  14. VoidCallback? onLogout,
})

Implementation

const FCCAppBar({
  super.key,
  this.title,
  this.subtitle,
  this.leading,
  this.actions,
  this.gradient,
  this.isNotificationVisible = true,
  this.notificationCount,
  this.onNotificationTap,
  this.profileImagePath,
  this.userName,
  this.status,
  this.onProfileTap,
  this.onLogout,
});