BasicAppBar constructor

const BasicAppBar({
  1. Key? key,
  2. String? title,
  3. Widget? leading,
  4. BasicBorder border = const BasicBorder.none(),
  5. Color? backgroundColor,
  6. Color? foregroundColor,
  7. Color? surfaceTintColor,
  8. List<Widget>? actions,
})

Implementation

const BasicAppBar({
  super.key,
  this.title,
  this.leading,
  this.border = const BasicBorder.none(),
  this.backgroundColor,
  this.foregroundColor,
  this.surfaceTintColor,
  this.actions,
});