title property

String title

Rollover text. If provided, an accessibility text (e.g. for use with screen readers) will be added to the marker with the provided value.

Implementation

String get title=>_title;
void title=(String value)

Implementation

set title(String value){
  _title=value;
  _sendData('setMarkerTitle', {'title':value});
}