endLabel property

  1. @JsonKey.new(includeFromJson: false, includeToJson: false)
ConnectionLabel? get endLabel

The label at the end of the connection (anchor 1.0).

This label appears at the target port. Set to null to remove the end label.

Implementation

@JsonKey(includeFromJson: false, includeToJson: false)
ConnectionLabel? get endLabel => _endLabel.value;
set endLabel (ConnectionLabel? value)

Sets the label at the end of the connection.

Implementation

set endLabel(ConnectionLabel? value) =>
    runInAction(() => _endLabel.value = value);