MyPageAppBar constructor

const MyPageAppBar({
  1. Key? key,
  2. String? title,
  3. Color? backgroundColor,
  4. Color? foregroundColor,
  5. bool showBack = true,
  6. bool primary = true,
  7. dynamic onBack()?,
  8. List<Widget>? actions,
  9. bool exitApp = false,
  10. Widget? leading,
  11. double? elevation,
})

Implementation

const MyPageAppBar({
  Key? key,
  this.title,
  this.backgroundColor,
  this.foregroundColor,
  this.showBack = true,
  this.primary = true,
  this.onBack,
  this.actions,
  this.exitApp = false,
  this.leading,
  this.elevation,
}) : super(key: key);