finalProperties property
finalProperties returns a list of properties that are required to create the object. These properties are serialized and deserialized with the object. By separating final properties from transient properties, objects with circular references can be serialized and deserialized.
Implementation
List<dynamic> get finalProperties {
return [];
}