unionWithEnvelope method

void unionWithEnvelope(
  1. {required Envelope envelope}
)

Finds the union of the builder's envelope and the specified envelope and updates the envelope builder with the result.

Parameters:

  • envelope — Another envelope to union with.

Implementation

void unionWithEnvelope({required Envelope envelope}) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_EnvelopeBuilder_unionWithEnvelope(
        _handle, envelope._handle, errorHandler);
  });
}