maxDeduplicationItems property

int 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;
void maxDeduplicationItems=(int count)

Implementation

set maxDeduplicationItems(int count) {
  assert(count > 0);
  _maxDeduplicationItems = count;
}