BulletedListTile constructor

const BulletedListTile(
  1. {Key? key,
  2. BoxShape bulletShape = BoxShape.circle,
  3. double bulletSize = 1.5,
  4. Color? bulletColor,
  5. required String text,
  6. double fontSize = 2.0,
  7. FontWeight fontWeight = FontWeight.normal,
  8. Color? textColor,
  9. MainAxisSize mainAxisSize = MainAxisSize.max,
  10. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start}
)

Implementation

const BulletedListTile({
  Key? key,
  this.bulletShape = BoxShape.circle,
  this.bulletSize = 1.5,
  this.bulletColor,
  required this.text,
  this.fontSize = 2.0,
  this.fontWeight = FontWeight.normal,
  this.textColor,
  this.mainAxisSize = MainAxisSize.max,
  this.crossAxisAlignment = CrossAxisAlignment.start,
}) : super(key: key);