encodeBase64 method

String? encodeBase64()

Base64编码

Implementation

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