JsonGuardOptions constructor

const JsonGuardOptions({
  1. int maxDepth = 32,
  2. int maxKeys = 1000,
  3. int maxStringLength = 100000,
  4. int maxArrayLength = 10000,
  5. bool blockPrototypeKeys = true,
})

Implementation

const JsonGuardOptions({
  this.maxDepth = 32,
  this.maxKeys = 1000,
  this.maxStringLength = 100000,
  this.maxArrayLength = 10000,
  this.blockPrototypeKeys = true,
});