styleline method

Widget styleline(
  1. String line
)

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),
        ),
      ]));
}