decode method

Future<Uint8List> decode (String encoded)

Implementation

static Future<Uint8List> decode(String encoded) async {
  var res = await invokeCrypto('base58.decode', [encoded]);
  return res as Uint8List;
}