ConnectionEndPoint constructor
const
ConnectionEndPoint({
- required MarkerShape shape,
- required Size size,
- Color? color,
- Color? borderColor,
- double? borderWidth,
Creates a connection endpoint marker.
Parameters:
shape: The geometric shape of the endpoint markersize: The size of the marker in logical pixelscolor: Optional fill color (falls back to connection/port theme color)borderColor: Optional border color (falls back to port theme border color)borderWidth: Optional border width (falls back to port theme border width)
Implementation
const ConnectionEndPoint({
required this.shape,
required this.size,
this.color,
this.borderColor,
this.borderWidth,
});