base58FlickrDecode function

Uint8List base58FlickrDecode(
  1. String input
)

Decodes input using base58Flickr decoding with Flickr alphabet.

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

Implementation

Uint8List base58FlickrDecode(String input) => base58Flickr.decode(input);