box static method

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

Returns a SizedBox with both width and height

Implementation

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