StackRouterAppBar constructor

const StackRouterAppBar({
  1. Widget? title,
  2. Widget? leading,
  3. Widget? trailing,
  4. bool suppressLeadingBackButton = false,
  5. double height = stackRouterAppBarHeight,
  6. dynamic key,
})

Implementation

const StackRouterAppBar({
  this.title,
  this.leading,
  this.trailing,
  this.suppressLeadingBackButton = false,
  this.height = stackRouterAppBarHeight,
  key,
}) : super(key: key);