decodeBase64 method

String? decodeBase64()

Base64解码

Implementation

String? decodeBase64() {
  if (this == null) {
    return null;
  }
  return EncryptUtil.decodeBase64(this!);
}