base58RippleDecode function

Uint8List base58RippleDecode(
  1. String input
)

Decodes input using base58Ripple decoding with Ripple alphabet.

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

Implementation

Uint8List base58RippleDecode(String input) => base58Ripple.decode(input);