add method
Returns the insets with the given offsets added to the corresponding directions.
Implementation
EdgeInsets add(EdgeInsets other) {
return EdgeInsets.fromLTRB(
left + other.left,
top + other.top,
right + other.right,
bottom + other.bottom,
);
}