setLabelWithIndex method

void setLabelWithIndex(
  1. int argIndex,
  2. int onLocation
)

Implementation

void setLabelWithIndex(int argIndex, int onLocation) {
  if (label == null) {
    label = new Label.args2(argIndex, onLocation);
  } else
    label!.setLocationWithIndex(argIndex, onLocation);
}