remove method

void remove(
  1. Path path
)

Remove the path from the collection.

Parameters

  • IN path The path to be removed

Implementation

void remove(final Path path) {
  objectMethod(
    _pointerId,
    'MapViewPathCollection',
    'remove',
    args: path.pointerId,
    dependencyId: _mapPointerId,
  );
}