verticalSpace static method

Widget verticalSpace(
  1. double size
)

Returns a SizedBox with a scaled height.

Implementation

static Widget verticalSpace(double size) => SizedBox(height: _scale(size));