AppBar constructor

const AppBar({
  1. Key? key,
  2. int? elevation,
  3. Component? leading,
  4. Color? backgroundColor,
  5. bool? centerTitle,
  6. Component? title,
  7. Actions? actions,
})

Implementation

const AppBar({
  super.key,
  this.elevation,
  this.leading,
  this.backgroundColor,
  this.centerTitle,
  this.title,
  this.actions,
});