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