ServiceField constructor

ServiceField({
  1. bool? required,
  2. dynamic example,
  3. String? name,
  4. String? description,
})

Implementation

ServiceField({
  this.required,
  this.example,
  this.name,
  this.description,
});