StringElicitationField constructor

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

Implementation

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