TatweerListSection constructor

const TatweerListSection({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. required List<Widget> children,
  5. Widget? header,
  6. Color? backgroundColor,
  7. double? borderRadius,
  8. bool showDividers = true,
  9. Color? dividerColor,
  10. EdgeInsetsGeometry? padding,
  11. EdgeInsetsGeometry? itemPadding,
  12. bool elevated = false,
})

Implementation

const TatweerListSection({
  Key? key,
  this.title,
  this.subtitle,
  required this.children,
  this.header,
  this.backgroundColor,
  this.borderRadius,
  this.showDividers = true,
  this.dividerColor,
  this.padding,
  this.itemPadding,
  this.elevated = false,
}) : super(key: key);