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