AddSizeBox function

Widget AddSizeBox(
  1. double _height,
  2. double _width
)

Implementation

Widget AddSizeBox(double _height, double _width) {
  return SizedBox(
    height: _height,
    width: _width,
  );
}