GeoHash.decode constructor

GeoHash.decode(
  1. String geohash, {
  2. int bits = 5,
  3. String? alphabet,
})

Decode geohash and create an object

Implementation

factory GeoHash.decode(String geohash, {int bits = 5, String? alphabet}) =>
    _GeoHasher.decode(geohash, bits, alphabet);