hiSpace function

dynamic hiSpace({
  1. double height = 1,
  2. double width = 1,
})

Implementation

hiSpace({double height: 1, double width: 1}) {
  return SizedBox(height: height, width: width);
}