BulletList constructor

const BulletList({
  1. required List<String> items,
  2. String bullet = '•',
  3. int indent = 2,
  4. ListEnumerator? enumerator,
  5. ListStyleFunc? itemStyleFunc,
  6. RenderConfig renderConfig = const RenderConfig(),
})

Implementation

const BulletList({
  required this.items,
  this.bullet = '•',
  this.indent = 2,
  this.enumerator,
  this.itemStyleFunc,
  this.renderConfig = const RenderConfig(),
});