spaceDivider function

Widget spaceDivider()

Implementation

Widget spaceDivider(){
  return Padding(
    padding: const EdgeInsets.symmetric(horizontal: 8.0, vertical: 3.0),
    child: Divider(
      color: CommonColors.grey,
      height: 5.0,
      thickness: 0.25,
    ),
  );
}