base32GeoHashDecode function

Uint8List base32GeoHashDecode(
  1. String input
)

Decodes input using base32GeoHash decoding with GeoHash alphabet.

Shorthand for base32GeoHash.decode(input). Useful if a local variable shadows the global base32GeoHash constant.

Implementation

Uint8List base32GeoHashDecode(String input) => base32GeoHash.decode(input);