ParameterConstraints constructor

ParameterConstraints({
  1. String? allowedPattern,
  2. List<String>? allowedValues,
  3. String? constraintDescription,
  4. String? maxLength,
  5. String? maxValue,
  6. String? minLength,
  7. String? minValue,
})

Implementation

ParameterConstraints({
  this.allowedPattern,
  this.allowedValues,
  this.constraintDescription,
  this.maxLength,
  this.maxValue,
  this.minLength,
  this.minValue,
});