ListItemStyle constructor

const ListItemStyle({
  1. TextStyle? titleStyle,
  2. Color? separatorColor,
  3. EdgeInsetsGeometry? padding,
  4. EdgeInsetsGeometry? margin,
  5. double? width,
  6. double? height,
  7. Color? background,
  8. BoxBorder? border,
  9. double? borderRadius,
  10. Gradient? gradient,
})

Implementation

const ListItemStyle({
  this.titleStyle,
  this.separatorColor,
  this.padding,
  this.margin,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});