MiniAppBar constructor

const MiniAppBar({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. List<Widget> actions = const <Widget>[],
  5. bool centerTitle = false,
  6. double? height,
})

Implementation

const MiniAppBar({
  super.key,
  this.leading,
  this.title,
  this.actions = const <Widget>[],
  this.centerTitle = false,
  this.height,
});