int hashCode

Source

@override
int get hashCode {
  int a = this.left.hashCode;
  int b = this.top.hashCode;
  int c = this.width.hashCode;
  int d = this.height.hashCode;
  return JenkinsHash.hash4(a, b, c, d);
}