only static method
Implementation
static EdgeInsetsGeometry only(
{double top = 0,
double right = 0,
double bottom = 0,
double left = 0,
bool withResponsive = true}) {
if (withResponsive) {
return EdgeInsets.only(
left: MM.getScaledSizeHeight(left),
right: MM.getScaledSizeHeight(right),
top: MM.getScaledSizeHeight(top),
bottom: MM.getScaledSizeHeight(bottom));
} else {
return EdgeInsets.only(
left: left, right: right, top: top, bottom: bottom);
}
}