title property

String title

A descriptive (human-readable) name for the service.

Implementation

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