isEmpty property

bool isEmpty

Indicates if the mutable part collection contains no parts.

Implementation

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