kdecodeBase64 method

String kdecodeBase64()

Base64解密字符串

Implementation

String kdecodeBase64() {
  List<int> bytes = base64Decode(this);
  String result = utf8.decode(bytes);
  return result;
}