BulletedListTile constructor
const
BulletedListTile(- {Key? key,
- BoxShape bulletShape = BoxShape.circle,
- double bulletSize = 1.5,
- Color? bulletColor,
- required String text,
- double fontSize = 2.0,
- FontWeight fontWeight = FontWeight.normal,
- Color? textColor,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- 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);