YAppBarWidget constructor

YAppBarWidget({
  1. String? title,
  2. Widget? leftWidget,
  3. dynamic onLeftClick()?,
  4. Widget? rightWidget,
  5. dynamic onRightClick()?,
  6. Widget? leftContainer,
  7. Widget? rightContainer,
  8. Widget? centerContainer,
})

Implementation

YAppBarWidget({
  this.title,
  this.leftWidget,
  this.onLeftClick,
  this.rightWidget,
  this.onRightClick,
  this.leftContainer,
  this.rightContainer,
  this.centerContainer,
});