contentDupHash property
int
get
contentDupHash
Implementation
int get contentDupHash {
List<int> g = [];
g.addAll(attachmentLink);
if (author.isNotEmpty) {
g.addAll(utf8.encode(author));
}
g.addAll(_body);
return xxHash(Uint8List.fromList(g));
}