getMarker method

  1. @Deprecated('Use marker getter instead')
Marker getMarker()

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']);
}