StringSchema constructor

const StringSchema({
  1. String? title,
  2. String? description,
  3. int? minLength,
  4. int? maxLength,
  5. String? format,
  6. String? defaultValue,
})

Implementation

const StringSchema({
  this.title,
  this.description,
  this.minLength,
  this.maxLength,
  this.format,
  this.defaultValue,
});