label method

NikuText label(
  1. String semanticsLabel
)

Semantics label for text, good for screen reader

Equivalent:

Text(semanticsLabel: input)

Implementation

NikuText label(String semanticsLabel) {
  this._semanticsLabel = semanticsLabel;

  return this;
}