operator == method

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

Compares this GeoCircle with other for equality.

Implementation

@override
bool operator ==(Object other) =>
    identical(this, other) ||
    other is GeoCircle &&
        center == other.center &&
        radius == other.radius;