ListStyle constructor

const ListStyle({
  1. double? bulletSize,
  2. Color? bulletColor,
  3. BoxShape? bulletShape,
  4. TextStyle? markerTextStyle,
  5. double? indent,
  6. double? gapAfterMarker,
})

Creates a ListStyle. Null fields defer to the theme, then to the default.

Implementation

const ListStyle({
  this.bulletSize,
  this.bulletColor,
  this.bulletShape,
  this.markerTextStyle,
  this.indent,
  this.gapAfterMarker,
});