version property
The version of the WMS specification used when communicating with this service.
This API supports WMS versions: 1.3.0, 1.1.1, and 1.1.0. By default the value is the latest supported WMS version.
Implementation
WmsVersion get version {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_WMSService_getVersion(
_handle,
errorHandler,
);
});
return WmsVersion._fromCoreValue(
coreValue,
);
}