emptySizedBox static method

Widget emptySizedBox({
  1. double? height,
  2. double? width,
})

Empty Sized Box with given height and/or width

Implementation

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