isEmpty property

bool isEmpty

Indicates if the part contains no segments.

Implementation

bool get isEmpty {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_MutablePart_getIsEmpty(
      _handle,
      errorHandler,
    );
  });
}