decodeBase64 static method

String decodeBase64(
  1. String data
)

Base64解密

Implementation

static String decodeBase64(String data){
  return String.fromCharCodes(base64Decode(data));
}