CustomAppBar constructor

const CustomAppBar({
  1. Key? key,
  2. Widget? title,
  3. List<Widget> leading = const [],
  4. List<Widget> actions = const [],
  5. EdgeInsets? padding,
  6. Border? border,
  7. EdgeInsets margin = EdgeInsets.zero,
  8. bool top = true,
  9. BorderRadius? borderRadius,
})

Implementation

const CustomAppBar({
  super.key,
  this.title,
  this.leading = const [],
  this.actions = const [],
  this.padding,
  this.border,
  this.margin = EdgeInsets.zero,
  this.top = true,
  this.borderRadius,
});