TitleBar constructor

const TitleBar({
  1. Key? key,
  2. dynamic result,
  3. double height = 56.0,
  4. double elevation = 0.0,
  5. Widget? left,
  6. Widget? center,
  7. Widget? right,
  8. Color? shadowColor,
  9. Color? backgroundColor,
  10. dynamic onBack()?,
})

Implementation

const TitleBar({
  Key? key,
  this.result,
  this.height = 56.0,
  this.elevation = 0.0,
  this.left,
  this.center,
  this.right,
  this.shadowColor,
  this.backgroundColor,
  this.onBack,
}) : super(key: key);