addWidth function

Widget addWidth(
  1. double? width
)

Implementation

Widget addWidth(double? width) {
  return SizedBox(width: width);
}