base58RippleEncode function

String base58RippleEncode(
  1. Uint8List input
)

Encodes input using base58Ripple encoding with Ripple alphabet.

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

Implementation

String base58RippleEncode(Uint8List input) => base58Ripple.encode(input);