Connection constructor

Connection({
  1. required String connectionId,
  2. required String otherComponentId,
})

Abstract class that represents connection of a component.

Implementation

Connection({
  required this.connectionId,
  required this.otherComponentId,
});