ExpandableThemeData.raw constructor

const ExpandableThemeData.raw({
  1. required EdgeInsets contentPadding,
  2. required TextStyle headerTextStyle,
  3. required TextStyle rowTextStyle,
  4. required int headerTextMaxLines,
  5. required int rowTextMaxLines,
  6. required TextOverflow rowTextOverflow,
  7. required TextStyle expandedTextStyle,
  8. required Color headerColor,
  9. Color? headerSortIconColor,
  10. double? headerHeight,
  11. required Color expandedBorderColor,
  12. required Color rowColor,
  13. Color? evenRowColor,
  14. Color? oddRowColor,
  15. required BorderSide headerBorder,
  16. required BorderSide rowBorder,
  17. required Icon editIcon,
  18. required Icon expansionIcon,
  19. required double paginationSize,
  20. TextStyle? paginationTextStyle,
  21. Color? paginationSelectedTextColor,
  22. Color? paginationUnselectedTextColor,
  23. Color? paginationSelectedFillColor,
  24. Color? paginationBorderColor,
  25. BorderRadius? paginationBorderRadius,
  26. double? paginationBorderWidth,
})

Implementation

const ExpandableThemeData.raw({
  required this.contentPadding,
  required this.headerTextStyle,
  required this.rowTextStyle,
  required this.headerTextMaxLines,
  required this.rowTextMaxLines,
  required this.rowTextOverflow,
  required this.expandedTextStyle,
  required this.headerColor,
  this.headerSortIconColor,
  this.headerHeight,
  required this.expandedBorderColor,
  required this.rowColor,
  this.evenRowColor,
  this.oddRowColor,
  required this.headerBorder,
  required this.rowBorder,
  required this.editIcon,
  required this.expansionIcon,
  required this.paginationSize,
  this.paginationTextStyle,
  this.paginationSelectedTextColor,
  this.paginationUnselectedTextColor,
  this.paginationSelectedFillColor,
  this.paginationBorderColor,
  this.paginationBorderRadius,
  this.paginationBorderWidth,
});