markerCollection property

MarkerCollection get markerCollection

Returns the MarkerCollection containing the matched marker.

Returns

Implementation

MarkerCollection get markerCollection {
  final OperationResult resultString = objectMethod(
    pointerId,
    'MarkerMatch',
    'getMarkerCollection',
  );

  return MarkerCollection.init(resultString['result'], 0);
}