operator == method
Compares this GeoPolygon with other for equality.
Implementation
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is GeoPolygon &&
points.length == other.points.length &&
_listEquals(points, other.points);