runBinary<R, T1, T2> method
- R action(
- T1 argument1,
- T2 argument2
- T1 argument1,
- T2 argument2
Executes the given action with argument1 and argument2 in this
zone.
As run except that action is called with two arguments instead of none.
Implementation
@pragma('dart2js:prefer-inline')
@pragma('dart2wasm:prefer-inline')
@pragma('vm:prefer-inline')
R runBinary<R, T1, T2>(
R action(T1 argument1, T2 argument2),
T1 argument1,
T2 argument2,
) => _runBinaryZoned<R, T1, T2>(this, action, argument1, argument2);