owner property

String owner

The username of the user who owns this portal item.

Implementation

String get owner {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_PortalItem_getOwner(
      _handle,
      errorHandler,
    );
  });
  return stringHandle.toDartString();
}