operator + method
Returns the sum of these insets and other.
Implementation
EdgeInsets operator +(EdgeInsets other) => EdgeInsets.fromLTRB(
left + other.left,
top + other.top,
right + other.right,
bottom + other.bottom,
);