CustomAppBar constructor

CustomAppBar({
  1. Key? key,
  2. required double height,
  3. Style? styleType,
  4. double? leadingWidth,
  5. Widget? leading,
  6. Widget? title,
  7. bool? centerTitle,
  8. List<Widget>? actions,
})

Implementation

CustomAppBar({
  Key? key,
  required this.height,
  this.styleType,
  this.leadingWidth,
  this.leading,
  this.title,
  this.centerTitle,
  this.actions,
}) : super(
        key: key,
      );