JsonSchema constructor

JsonSchema({
  1. Map<String, Object?>? additionalDetails,
  2. Object? default_,
  3. String? description,
  4. List<Object?>? enum_,
  5. String? format,
  6. JsonSchema? items,
  7. String? jdbcType,
  8. Map<String, JsonSchema>? properties,
  9. List<String>? required,
  10. List<String>? type,
})

Implementation

JsonSchema({
  this.additionalDetails,
  this.default_,
  this.description,
  this.enum_,
  this.format,
  this.items,
  this.jdbcType,
  this.properties,
  this.required,
  this.type,
});