safeCall
fun <ReturnType> safeCall(errorQueue: Queue<Operation<ReturnType>>? = null, block: Operation<ReturnType>): ReturnType?
Safely invoke a function and log KlaviyoExceptions rather than crash Take care not to nest safeCall invocations, because the inner exception will not halt execution of the outer method.