text property

String text

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

Implementation

String get text {
  return _helper.text;
}
void 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;
}