PRFBrandedNavBar constructor

const PRFBrandedNavBar({
  1. required String title,
  2. Key? key,
  3. VoidCallback? onBack,
  4. List<Widget>? actions,
  5. bool showBackButton = true,
  6. Color? backgroundColor,
  7. Color? foregroundColor,
})

Implementation

const PRFBrandedNavBar({
  required this.title,
  super.key,
  this.onBack,
  this.actions,
  this.showBackButton = true,
  this.backgroundColor,
  this.foregroundColor,
});