featureRequestMode property
The request mode to use for requesting features. Default is FeatureRequestMode.onInteractionCache.
Implementation
FeatureRequestMode get featureRequestMode {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LoadSettings_getFeatureRequestMode(
_handle,
errorHandler,
);
});
return FeatureRequestMode._fromCoreValue(
coreValue,
);
}
Implementation
set featureRequestMode(FeatureRequestMode value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_LoadSettings_setFeatureRequestMode(
_handle,
value.coreValue,
errorHandler,
);
});
}