featureRequestMode property
The mode defining when features are requested from the service.
You must set the feature request mode to FeatureRequestMode.manualCache before attempting to populate the table using WfsFeatureTable.populateFromService.
Implementation
FeatureRequestMode get featureRequestMode {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_WFSFeatureTable_getFeatureRequestMode(
_handle,
errorHandler,
);
});
return FeatureRequestMode._fromCoreValue(
coreValue,
);
}
Implementation
set featureRequestMode(FeatureRequestMode value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_WFSFeatureTable_setFeatureRequestMode(
_handle,
value.coreValue,
errorHandler,
);
});
}