InputParameter constructor

InputParameter({
  1. String? dataType,
  2. Object? defaultValue,
  3. String? description,
  4. JsonSchema? jsonSchema,
  5. bool? nullable,
  6. String? parameter,
})

Implementation

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