ExAppBar constructor

const ExAppBar({
  1. required String title,
  2. Widget? leading,
  3. List<Widget>? actions,
  4. TextStyle? textStyle,
  5. double? elevation,
  6. Color? backgroundColor,
  7. Key? key,
})

Implementation

const ExAppBar({
  required this.title,
  this.leading,
  this.actions,
  this.textStyle,
  this.elevation,
  this.backgroundColor,
  super.key,
});