DirObject constructor

DirObject(
  1. String classString, {
  2. String? identifier,
  3. List<Link>? links,
  4. List<Value>? values,
})

Creates a DirObject with the given classString.

Implementation

DirObject(this.classString, {this.identifier, this.links, this.values});