clone method
Clones the ExportVectorTilesParameters.
Return Value: A new ExportVectorTilesParameters with the same values as the current ExportVectorTilesParameters.
Implementation
ExportVectorTilesParameters clone() {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ExportVectorTilesParameters_clone(
_handle, errorHandler);
});
return ExportVectorTilesParameters._fromHandle(objectHandle)!;
}