getSizedBox static method

SizedBox getSizedBox({
  1. Key? key,
  2. double width = 0,
  3. double height = 0,
})

Implementation

static SizedBox getSizedBox({Key? key, double width = 0, double height = 0}) {
  return SizedBox.fromSize(key: key, size: Size(width, height));
}