horizontalSpaceCustom function

Widget horizontalSpaceCustom({
  1. required double width,
})

Horizontal space with custom width

Implementation

Widget horizontalSpaceCustom({required double width}) => SizedBox(width: width);