AreaPaneHeader constructor

const AreaPaneHeader({
  1. Key? key,
  2. required Widget title,
  3. int maxLines = 1,
  4. List<Widget> actions = const [],
  5. double leftPadding = defaultSpacing,
  6. double rightPadding = densePadding,
  7. bool tall = false,
  8. bool dense = false,
  9. bool roundedTopBorder = true,
  10. bool includeTopBorder = true,
  11. bool includeBottomBorder = true,
  12. bool includeLeftBorder = false,
  13. bool includeRightBorder = false,
})

Implementation

const AreaPaneHeader({
  super.key,
  required this.title,
  this.maxLines = 1,
  this.actions = const [],
  this.leftPadding = defaultSpacing,
  this.rightPadding = densePadding,
  this.tall = false,
  this.dense = false,
  this.roundedTopBorder = true,
  this.includeTopBorder = true,
  this.includeBottomBorder = true,
  this.includeLeftBorder = false,
  this.includeRightBorder = false,
});