comments property

String comments

The document comments.

Implementation

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