styleline method
Implementation
Widget styleline(String line) {
return SizedBox(
height: 38,
child: Row(children: [
Bullet(),
SizedBox(
width: 40,
),
Text(
line,
style: TextStyle(fontSize: 18, fontWeight: FontWeight.normal),
),
]));
}