CompressionDictionary constructor

CompressionDictionary({
  1. String name = 'default',
  2. int minPatternLength = 2,
  3. int maxDictionarySize = 65536,
})

Implementation

CompressionDictionary({
  this.name = 'default',
  this.minPatternLength = 2,
  this.maxDictionarySize = 65536,
});