queryable property

bool queryable

True if the WMS layer is queryable, false otherwise.

Implementation

bool get queryable {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_WMSLayerInfo_getQueryable(
      _handle,
      errorHandler,
    );
  });
}