isEmpty property

  1. @override
bool isEmpty
override

Indicates if the mutable part collection contains no parts.

Implementation

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