CustomAppBar constructor

const CustomAppBar(
  1. {Key? key,
  2. String? title,
  3. bool automaticallyImplyLeading = true,
  4. Color? backgroundColor,
  5. Color? titleColor,
  6. Color? iconColor,
  7. List<Widget>? actions,
  8. double height = kToolbarHeight}
)

Implementation

const CustomAppBar({
  Key? key,
  this.title,
  this.automaticallyImplyLeading = true,
  this.backgroundColor,
  this.titleColor,
  this.iconColor,
  this.actions,
  this.height = kToolbarHeight,
}) : super(key: key);