operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

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);