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