value property
String
get
value
Implementation
String get value {
switch (this) {
case RelationshipType.parent:
return "PARENT";
case RelationshipType.child:
return "CHILD";
case RelationshipType.sibling:
return "SIBLING";
}
}