box static method

Widget box({
  1. double? width,
  2. double? height,
})

Get spacing in both directions

Implementation

static Widget box({double? width, double? height}) {
  return SizedBox(width: width, height: height);
}