Model constructor

Model({
  1. String? contentType,
  2. String? description,
  3. String? id,
  4. String? name,
  5. String? schema,
})

Implementation

Model({
  this.contentType,
  this.description,
  this.id,
  this.name,
  this.schema,
});