addHeight function

Widget addHeight(
  1. double? height
)

Implementation

Widget addHeight(double? height) {
  return SizedBox(height: height);
}