InputDescriptorField constructor

InputDescriptorField({
  1. required List<JsonPath> path,
  2. String? id,
  3. String? purpose,
  4. String? name,
  5. JsonSchema? filter,
  6. bool? optional,
  7. Limiting? predicate,
})

Implementation

InputDescriptorField(
    {required this.path,
    this.id,
    this.purpose,
    this.name,
    this.filter,
    this.optional,
    this.predicate});