StringSchema constructor

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

Implementation

StringSchema({
  this.minLength,
  this.maxLength,
  this.format,
  super.defaultValue,
  super.title,
  super.description,
}) : super(type: 'string');