verticalSpace method

Widget verticalSpace(
  1. double height
)

Implementation

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