OfflineMapParametersKey.withTable constructor
- ServiceFeatureTable table
Create an offline map parameters key for the given table.
The returned key can be used to retrieve a data type specific parameter object from the dictionary returned by GenerateOfflineMapParameterOverrides.generateGeodatabaseParameters.
Parameters:
table
— table that is to be used to access dictionaries in GenerateOfflineMapParameterOverrides object.
Implementation
factory OfflineMapParametersKey.withTable(ServiceFeatureTable table) {
_initializeArcGISEnvironmentIfNeeded();
final handle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_OfflineMapParametersKey_createWithTable(
table._handle, errorHandler);
});
return OfflineMapParametersKey._instanceCache.instanceWith(handle);
}