operator + method
Implementation
EdgeInsets operator +(EdgeInsets other) => EdgeInsets.fromLTRB(
left + other.left,
top + other.top,
right + other.right,
bottom + other.bottom,
);
EdgeInsets operator +(EdgeInsets other) => EdgeInsets.fromLTRB(
left + other.left,
top + other.top,
right + other.right,
bottom + other.bottom,
);