SanitizationMiddleware constructor

SanitizationMiddleware({
  1. bool trimWhitespace = true,
  2. int? maxLength,
  3. bool toLowerCase = false,
  4. bool toUpperCase = false,
})

Implementation

SanitizationMiddleware({
  this.trimWhitespace = true,
  this.maxLength,
  this.toLowerCase = false,
  this.toUpperCase = false,
});