JsonSchema constructor

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

Implementation

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