decodeBase64 static method

String decodeBase64(
  1. String data
)

Base64解密

Implementation

static String decodeBase64(String data) {
  List<int> bytes = base64Decode(data);
  String result = utf8.decode(bytes);
  return result;
}