FlutterBulletList constructor

const FlutterBulletList({
  1. @required List<ListItemModel>? data,
  2. TextStyle? textStyle,
  3. double spaceBetweenItem = 8.0,
  4. double bulletSize = 5.0,
  5. BulletType bulletType = BulletType.dot,
  6. Color bulletColor = Colors.black,
  7. double bulletSpacing = 6.0,
})

Implementation

const FlutterBulletList({
  @required this.data,
  this.textStyle,
  this.spaceBetweenItem = 8.0,
  this.bulletSize = 5.0,
  this.bulletType = BulletType.dot,
  this.bulletColor = Colors.black,
  this.bulletSpacing = 6.0,
}) : assert(data != null);