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