fromLTRB static method
Create responsive padding from LTRB values
Implementation
static EdgeInsets fromLTRB(
double left,
double top,
double right,
double bottom,
) {
return EdgeInsets.fromLTRB(
left.w,
top.h,
right.w,
bottom.h,
);
}