DefaultAppBar constructor

const DefaultAppBar({
  1. Key? key,
  2. bool? showBackArrow,
  3. List<Widget?>? appBarButtons,
  4. List<Widget?>? appBarPopupButtons,
  5. bool titleFullSpace = false,
  6. required Widget? title,
  7. Widget? description,
})

Implementation

const DefaultAppBar({
  Key? key,
  this.showBackArrow,
  this.appBarButtons,
  this.appBarPopupButtons,
  this.titleFullSpace = false,
  required this.title,
  this.description,
}) : super(key: key);