addVerticalSpace function

Widget addVerticalSpace({
  1. double height = 5,
})

Implementation

Widget addVerticalSpace({double height = 5}) {
  return SizedBox(height: height);
}