transientProperties property

List transientProperties

transientProperties returns a list of properties that are not required to create the object. These properties are set after the object is created.

Implementation

List<dynamic> get transientProperties {
  return [];
}
void transientProperties=(List properties)

set transientProperties sets the transient properties of the object after the object is created. This method is called by the ObjectSerialization class after the object is created.

Implementation

set transientProperties(List<dynamic> properties) {}