operator + method
Combine paddings: 16.px + 8.py
Implementation
EdgeInsets operator +(EdgeInsets other) {
return EdgeInsets.only(
left: left + other.left,
top: top + other.top,
right: right + other.right,
bottom: bottom + other.bottom,
);
}