decodeBase64 property
String
get
decodeBase64
Base64解码
Implementation
String get decodeBase64 {
List<int> bytes = base64Decode(this);
return String.fromCharCodes(bytes);
}
Base64解码
String get decodeBase64 {
List<int> bytes = base64Decode(this);
return String.fromCharCodes(bytes);
}