DirObject class

Represents an Object in the S3I-Directory data model.

Constructors

DirObject(String classString, {String? identifier, List<Link>? links, List<Value>? values})
Creates a DirObject with the given classString.
DirObject.fromJson(Map<String, dynamic> json)
Creates a DirObject from a decoded json entry.
factory

Properties

classString String
The fml4.0 key / name of this object.
final
hashCode int
The hash code for this object.
no setterinherited
identifier String?
An optional identifier for this object to differentiate between them if there are multiple same class keys in one entry.
getter/setter pair
The links associated with this object.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
values List<Value>?
The values associated with this object.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Returns the information stored in this object in a way the it could be encoded via jsonEncode().
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited