ConnectionLabel.end constructor
Creates a label positioned at the end of the connection (anchor 1.0).
Implementation
factory ConnectionLabel.end({
required String text,
double offset = 0.0,
String? id,
}) => ConnectionLabel(
text: text,
anchor: ConnectionAnchor.end,
offset: offset,
id: id,
);