md5Hash property

  1. @TagNumber.new(13)
String get md5Hash

MD5 hash of the data; encoded using base64 as per RFC 4648 ยง4. For more information about using the MD5 hash, see Hashes and ETags: Best Practices.

Implementation

@$pb.TagNumber(13)
$core.String get md5Hash => $_getSZ(11);
  1. @TagNumber.new(13)
set md5Hash (String v)

Implementation

@$pb.TagNumber(13)
set md5Hash($core.String v) {
  $_setString(11, v);
}