ListBaseStyle constructor

const ListBaseStyle({
  1. TextStyle? titleStyle,
  2. double? searchBoxRadius,
  3. TextStyle? searchTextStyle,
  4. TextStyle? searchPlaceholderStyle,
  5. double? searchBorderWidth,
  6. Color? searchBorderColor,
  7. Color? searchBoxBackground,
  8. Color? backIconTint,
  9. Color? searchIconTint,
  10. EdgeInsetsGeometry? padding,
  11. double? width,
  12. double? height,
  13. Color? background,
  14. BoxBorder? border,
  15. double? borderRadius,
  16. Gradient? gradient,
})

Implementation

const ListBaseStyle({
  this.titleStyle,
  this.searchBoxRadius,
  this.searchTextStyle,
  this.searchPlaceholderStyle,
  this.searchBorderWidth,
  this.searchBorderColor,
  this.searchBoxBackground,
  this.backIconTint,
  this.searchIconTint,
  this.padding,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});