BaseAppBar constructor

const BaseAppBar({
  1. Key? key,
  2. Widget? title,
  3. double? height,
  4. PreferredSizeWidget? bottom,
  5. Widget? leading,
  6. Widget? trailing,
  7. double? leadingWidth,
  8. bool? centerTitle = true,
  9. bool? withBack,
})

Implementation

const BaseAppBar({
  super.key,
  this.title,
  this.height,
  this.bottom,
  this.leading,
  this.trailing,
  this.leadingWidth,
  this.centerTitle = true,
  this.withBack,
});