text property

String get text

Gets content of the annotation. The string value specifies the text of the annotation.

Implementation

String get text {
  return _helper.text;
}
set text (String value)

Sets content of the annotation. The string value specifies the text of the annotation.

Implementation

set text(String value) {
  _helper.text = value;
}