StructuredOutputFormat constructor

const StructuredOutputFormat({
  1. required String name,
  2. String? description,
  3. Map<String, dynamic>? schema,
  4. bool? strict,
})

Implementation

const StructuredOutputFormat({
  required this.name,
  this.description,
  this.schema,
  this.strict,
});