operator + method

EdgeInsets operator +(
  1. EdgeInsets other
)

Implementation

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