horizontalSpace method

Widget horizontalSpace(
  1. double width
)

Implementation

Widget horizontalSpace(double width) {
  return SizedBox(
    width: width,
  );
}