horizontalSpace function

Widget horizontalSpace(
  1. double space
)

Custom spaces

Implementation

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