verticalSpaceCustom function

Widget verticalSpaceCustom({
  1. required double height,
})

Returs a vertical space with custom height

Implementation

Widget verticalSpaceCustom({required double height}) =>
    SizedBox(height: height);