sameCoordinate static method

bool sameCoordinate(
  1. LatLng coord1,
  2. LatLng coord2
)

Implementation

static bool sameCoordinate(LatLng coord1, LatLng coord2) {
  if (coord1.latitude == coord2.latitude && coord1.longitude == coord2.longitude) {
    return true;
  }
  return false;
}