indexOf method

int indexOf(
  1. MarkerCollection col
)

Return the index of col inside the map view collections.

Parameters

Returns

Implementation

int indexOf(final MarkerCollection col) {
  final OperationResult resultString = objectMethod(
    pointerId,
    'MapViewMarkerCollections',
    'indexOf',
    args: col.pointerId,
    dependencyId: _mapPointerId,
  );

  return resultString['result'];
}