ws property

SizedBox get ws

Eg: 20.ws -> will create sized box with 20% screen width

Implementation

SizedBox get ws => SizedBox(
  width: this * (SpacerUtil.width / 100),
);