executeWith2Args<T, Q, C> abstract method

Future<T> executeWith2Args<T, Q, C>(
  1. Task2<T, Q, C> task,
  2. Q argument,
  3. C argument2
)

Executes given task with given argument and argument2 in combine isolate.

This future may complete with:

Implementation

Future<T> executeWith2Args<T, Q, C>(
  Task2<T, Q, C> task,
  Q argument,
  C argument2,
);