BaseAppBar constructor

const BaseAppBar({
  1. Key? key,
  2. String title = '',
  3. String? backIcon,
  4. Widget? titleWidget,
  5. List<Widget>? actions,
  6. Color? backgroundColor,
  7. List<Widget>? leftWidgets,
})

Implementation

const BaseAppBar({
  super.key,
  this.title = '',
  this.backIcon,
  this.titleWidget,
  this.actions,
  this.backgroundColor,
  // this.leading,
  this.leftWidgets,
});