verticalSpace function

Widget verticalSpace(
  1. double space
)

Implementation

Widget verticalSpace(double space) {
  return SizedBox(height: space);
}