FileSystemContainsRelation constructor

FileSystemContainsRelation(
  1. String fromNodeId,
  2. String toNodeId
)

Implementation

FileSystemContainsRelation(String fromNodeId, String toNodeId)
    : super(
        type: FileSystemRelationType.contains.toString(),
        properties: {"name": "Contains"},
        fromNodeId: fromNodeId,
        toNodeId: toNodeId,
        labelProperty: "name",
      );