EntityType constructor

EntityType({
  1. String? defaultSortBy,
  2. List<Field>? fields,
  3. JsonSchema? jsonSchema,
  4. Map<String, Map<String, Object?>>? metadata,
  5. String? name,
  6. List<String>? operations,
})

Implementation

EntityType({
  this.defaultSortBy,
  this.fields,
  this.jsonSchema,
  this.metadata,
  this.name,
  this.operations,
});