maxDeduplicationItems property
int
get
maxDeduplicationItems
Describes how many exceptions are kept to be checked for deduplication. This should be a small positiv integer in order to keep deduplication performant. Is only in effect if enableDeduplication is set to true.
Implementation
int get maxDeduplicationItems => _maxDeduplicationItems;
set
maxDeduplicationItems
(int count)
Implementation
set maxDeduplicationItems(int count) {
assert(count > 0);
_maxDeduplicationItems = count;
}