marker property
Returns the matched Marker.
Returns
- The Marker instance that was matched by this hit.
Implementation
Marker get marker {
final OperationResult resultString = objectMethod(
pointerId,
'MarkerMatch',
'getMarker',
);
return Marker.init(resultString['result']);
}