addSizedBox method

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

Implementation

Widget addSizedBox({
  double? width,
  double? height,
}) {
  return SizedBox(
    width: width,
    height: height,
    child: this,
  );
}