subject property

String subject

The document subject.

Implementation

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