parent method
Returns a new Geohash for the parent of this one.
Implementation
GeoHash parent() {
return GeoHash(_geohash.substring(0, _geohash.length - 1));
}
Returns a new Geohash for the parent of this one.
GeoHash parent() {
return GeoHash(_geohash.substring(0, _geohash.length - 1));
}