md5 method

String? md5()

MD5散列

Implementation

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