Bullet constructor

const Bullet({
  1. required String text,
  2. TextStyle? style,
  3. String bullet = '•',
})

Bullet API.

Implementation

const Bullet({
  required this.text,
  this.style,
  this.bullet = '•',
});