ExportVectorTilesParameters constructor

ExportVectorTilesParameters()

Creates a new export vector tiles parameters instance.

Implementation

factory ExportVectorTilesParameters() {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ExportVectorTilesParameters_create(errorHandler);
  });
  return ExportVectorTilesParameters._instanceCache.instanceWith(handle);
}