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