Label.fromLabel constructor

Label.fromLabel(
  1. Label lbl
)

Construct a Label with the same values as the argument Label.

Implementation

Label.fromLabel(Label lbl) {
  elt[0] = new TopologyLocation.fromTL(lbl.elt[0]!);
  elt[1] = new TopologyLocation.fromTL(lbl.elt[1]!);
}