addPointsFromImmutable method

void addPointsFromImmutable({
  1. required ImmutablePointCollection points,
})

Add a new points to the end of the mutable point collection.

Parameters:

  • points — The new points to add.

Implementation

void addPointsFromImmutable({
  required ImmutablePointCollection points,
}) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_MutablePointCollection_addPointsFromImmutable(
      _handle,
      points._handle,
      errorHandler,
    );
  });
}