base32GeoHashEncode function

String base32GeoHashEncode(
  1. Uint8List input
)

Encodes input using base32GeoHash encoding with GeoHash alphabet.

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

Implementation

String base32GeoHashEncode(Uint8List input) => base32GeoHash.encode(input);