buildDivider function

Widget buildDivider()

Implementation

Widget buildDivider() {
  return Divider(
    color: Colors.grey[300],
    height: 0.2,
    thickness: 0.2,
  );
}