decodeBase64 method
Base64解码
Implementation
String? decodeBase64() {
if (this == null) {
return null;
}
return EncryptUtil.decodeBase64(this!);
}
Base64解码
String? decodeBase64() {
if (this == null) {
return null;
}
return EncryptUtil.decodeBase64(this!);
}