setFeaturesVisible method
Sets the visibility of the given features.
Parameters:
Implementation
void setFeaturesVisible({
required List<Feature> features,
required bool visible,
}) {
final coreFeatures = features.toArray(
valueType: _ElementType.feature,
);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_AnnotationLayer_setFeaturesVisible(
_handle,
coreFeatures._handle,
visible,
errorHandler,
);
});
}