getSizedBox static method

dynamic getSizedBox({
  1. double? width,
  2. double? height,
})

Implementation

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