InputParameter constructor

InputParameter({
  1. Map<String, Object?>? additionalDetails,
  2. String? dataType,
  3. Object? defaultValue,
  4. String? description,
  5. JsonSchema? jsonSchema,
  6. String? name,
  7. bool? nullable,
})

Implementation

InputParameter({
  this.additionalDetails,
  this.dataType,
  this.defaultValue,
  this.description,
  this.jsonSchema,
  this.name,
  this.nullable,
});