category property

String category

The document category.

Implementation

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