YAppBar constructor

YAppBar({
  1. String? title,
  2. Color? navBarTitleColor,
  3. double fontSize = 18,
  4. FontWeight fontWeight = FontWeight.w700,
  5. bool canBack = true,
  6. bool divider = false,
  7. Widget? left,
  8. Widget? right,
  9. Widget? widget,
  10. String? statubar,
  11. String? navBar,
})

Implementation

YAppBar({
  this.title,
  this.navBarTitleColor,
  this.fontSize = 18,
  this.fontWeight = FontWeight.w700,
  this.canBack = true,
  this.divider = false,
  this.left,
  this.right,
  this.widget,
  this.statubar,
  this.navBar,
});