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