ZeroListTileStyle constructor

const ZeroListTileStyle({
  1. Color? selectedColor,
  2. Color? hoverColor,
  3. Color? backgroundColor,
  4. TextStyle? titleTextStyle,
  5. TextStyle? subTitleTextStyle,
  6. Color? dividerColor,
  7. TextStyle? smallTitleTextStyle,
  8. TextStyle? smallSubTitleTextStyle,
  9. EdgeInsets? contentPadding,
  10. EdgeInsets? smallContentPadding,
})

Creates a ZeroListTile style that defines the color and style parameters for descendant ZeroListTiles.

Implementation

const ZeroListTileStyle({
  this.selectedColor,
  this.hoverColor,
  this.backgroundColor,
  this.titleTextStyle,
  this.subTitleTextStyle,
  this.dividerColor,
  this.smallTitleTextStyle,
  this.smallSubTitleTextStyle,
  this.contentPadding,
  this.smallContentPadding,
});