Inheritance

Constructors

FauxAuthenticatable()

Properties

backing ManagedBacking

read / write, inherited
backingMap → Map<String, dynamic>

The managed values of this instance.

read-only, inherited
entity ManagedEntity

The ManagedEntity this instance is described by.

read / write, inherited
hashCode → int

The hash code for this object.

read-only, inherited
runtimeType → Type

A representation of the runtime type of the object.

read-only, inherited

Operators

operator ==(other) → bool

The equality operator.

inherited
operator [](String propertyName) → dynamic

Retrieves a value by property name from the backingMap.

inherited
operator []=(String propertyName, value) → void

Sets a value by property name in the backingMap.

inherited

Methods

asMap() → Map<String, dynamic>

Converts this instance into a serializable map.

inherited
hasValueForProperty(String propertyName) → bool

Checks whether or not a property has been set in this instances' backingMap.

inherited
noSuchMethod(Invocation invocation) → dynamic

Invoked when a non-existent method or property is accessed.

inherited
readFromMap(Map<String, dynamic> keyValues) → void

Populates the properties of a this instance from a map.

inherited
readMap(Map<String, dynamic> keyValues) → void

@Deprecated("3.0, use readFromMap instead"), inherited
removePropertyFromBackingMap(String propertyName) → void

Removes a property from the backingMap.

inherited
toString() → String

Returns a string representation of this object.

inherited
validate({ValidateOperation forOperation: ValidateOperation.insert, List<String> collectErrorsIn }) → bool

Validates an object according to its property Validate metadata.

inherited
willInsert() → void

Callback to modify an object prior to inserting it with a Query.

inherited
willUpdate() → void

Callback to modify an object prior to updating it with a Query.

inherited