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