DocumentField constructor

DocumentField({
  1. String? example,
  2. required String label,
  3. required String paramname,
  4. dynamic valuelist,
})

Implementation

DocumentField({
  this.example,
  required this.label,
  required this.paramname,
  this.valuelist,
});