ObjectDefinition constructor

ObjectDefinition({
  1. String? name,
  2. ObjectOptions? options,
  3. List<PropertyDefinition>? propertyDefinitions,
})

Implementation

ObjectDefinition({
  this.name,
  this.options,
  this.propertyDefinitions,
});