sizedBox static method

dynamic sizedBox({
  1. dynamic height,
  2. dynamic width,
})

Implementation

static sizedBox({height, width}) {
  return SizedBox(
    height: height,
    width: width,
  );
}