removeAt method

void removeAt(
  1. int index
)

Remove the path specified by index.

Parameters

  • IN index The path index

Implementation

void removeAt(final int index) {
  objectMethod(
    _pointerId,
    'MapViewPathCollection',
    'removeAt',
    args: index,
    dependencyId: _mapPointerId,
  );
}