SchemaObject constructor
SchemaObject(
- ObjectType baseType,
- Type type,
- String name,
- Iterable<
SchemaProperty> properties,
Creates schema instance with object type and collection of object's properties.
Implementation
SchemaObject(this.baseType, this.type, this.name, Iterable<SchemaProperty> properties) : _properties = List.from(properties);