addVerticalSpace function
Returns a SizedBox widget with a specified height.
The height parameter is required and specifies the height of the SizedBox widget.
Example usage:
addVerticalSpace(20),
Implementation
Widget addVerticalSpace(double height) {
return SizedBox(
height: height,
);
}