Relation constructor

Relation({
  1. required String type,
  2. required String fromNodeId,
  3. required String toNodeId,
  4. required Map<String, dynamic> properties,
  5. required String labelProperty,
})

Implementation

Relation({
  required this.type,
  required this.fromNodeId,
  required this.toNodeId,
  required this.properties,
  required this.labelProperty,
});