author property

String author

The document author.

Implementation

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