sizedBox function

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

Implementation

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