AppTitle constructor

const AppTitle({
  1. Key? key,
  2. Widget? breadcrumb,
  3. required Widget title,
  4. Widget? subtitle,
  5. VoidCallback? onLeadingPressed,
  6. Widget? leadingIcon,
  7. Widget? trailing,
})

Implementation

const AppTitle({
  super.key,
  this.breadcrumb,
  required this.title,
  this.subtitle,
  this.onLeadingPressed,
  this.leadingIcon,
  this.trailing,
});