isSame method

bool isSame(
  1. Rect other
)

Implementation

bool isSame(Rect other) =>
    topIsSame(other) &&
    leftIsSame(other) &&
    rightIsSame(other) &&
    bottomIsSame(other);