featureRequestMode property

FeatureRequestMode featureRequestMode

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,
  );
}
void featureRequestMode=(FeatureRequestMode value)

Implementation

set featureRequestMode(FeatureRequestMode value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_LoadSettings_setFeatureRequestMode(
      _handle,
      value.coreValue,
      errorHandler,
    );
  });
}