startPoint property

  1. @JsonKey.new(includeFromJson: false, includeToJson: false)
ConnectionEndPoint? get startPoint

Optional custom start endpoint marker.

If null, the connection will use the startPoint from ConnectionTheme. This property is reactive — changing it will trigger a UI repaint.

Implementation

@JsonKey(includeFromJson: false, includeToJson: false)
ConnectionEndPoint? get startPoint => _startPoint.value;
set startPoint (ConnectionEndPoint? value)

Sets the start endpoint marker for this connection.

Implementation

set startPoint(ConnectionEndPoint? value) =>
    runInAction(() => _startPoint.value = value);