buildDivider method

Widget buildDivider()

Implementation

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