semanticsLabel method

NikuText semanticsLabel(
  1. String semanticsLabel
)

Semantics label for text, good for screen reader

Equivalent:

Text(semanticsLabel: input)

Implementation

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

  return this;
}