fromLTRB static method
Implementation
static EdgeInsetsGeometry fromLTRB(
double left, double top, double right, double bottom,
{bool withResponsive = true}) {
return Spacing.only(
bottom: bottom,
top: top,
right: right,
left: left,
withResponsive: withResponsive);
}