title property
The WMS service's title is brief descriptive text that identifies the service provider.
This information is usually appropriate to display to users.
Implementation
String get title {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_WMSServiceInfo_getTitle(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}