isEmpty property

bool isEmpty

Indicates if the immutable part collection contains no parts.

Implementation

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