title property

String title

The service's human-readable title.

Implementation

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