BulletedList constructor

const BulletedList({
  1. Key? key,
  2. required List listItems,
  3. TextStyle? style,
  4. Widget? bullet,
  5. ListOrder listOrder = ListOrder.unordered,
  6. Color bulletColor = Colors.blueGrey,
  7. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  8. BulletType bulletType = BulletType.conventional,
  9. Color numberColor = Colors.white,
  10. BoxShape boxShape = BoxShape.circle,
})

Implementation

const BulletedList({
  Key? key,
  required this.listItems,
  this.style,
  this.bullet,
  this.listOrder = ListOrder.unordered,
  this.bulletColor = Colors.blueGrey,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.bulletType = BulletType.conventional,
  this.numberColor = Colors.white,
  this.boxShape = BoxShape.circle,
}) : super(key: key);