version property
The WMTS service's version.
Version string specified by the ows:ServiceTypeVersion field of the GetCapabilities response. It is expected to be "1.0.0".
Implementation
String get version {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_WMTSServiceInfo_getVersion(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}