dynamic runBinaryGuarded(
dynamic f(arg1, arg2),
arg1,
arg2
)

Executes the given callback f in this zone.

Same as runBinary but catches uncaught errors and gives them to handleUncaughtError.

Source

/**
 * Executes the given callback [f] in this zone.
 *
 * Same as [runBinary] but catches uncaught errors and gives them to
 * [handleUncaughtError].
 */
dynamic runBinaryGuarded(f(arg1, arg2), var arg1, var arg2);