sbwh method

SizedBox sbwh({
  1. double? height,
})

Implementation

SizedBox sbwh({double? height}) => SizedBox(
    width: w, height: height != null ? height * _g.scaleHeight : null);