startLabel property

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

The label at the start of the connection (anchor 0.0).

This label appears at the source port. Set to null to remove the start label.

Implementation

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

Sets the label at the start of the connection.

Implementation

set startLabel(ConnectionLabel? value) =>
    runInAction(() => _startLabel.value = value);