width property

double width

The width of the Envelope being constructed.

This is the difference between the minimum and maximum x coordinates.

Implementation

double get width {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_EnvelopeBuilder_getWidth(
      _handle,
      errorHandler,
    );
  });
}