executeWith4Args<T, Q, C, A, B> abstract method

Future<T> executeWith4Args<T, Q, C, A, B>(
  1. Task4<T, Q, C, A, B> task,
  2. Q argument,
  3. C argument2,
  4. A argument3,
  5. B argument4,
)

Executes given task with given arguments in combine isolate.

This future may complete with:

Implementation

Future<T> executeWith4Args<T, Q, C, A, B>(
  Task4<T, Q, C, A, B> task,
  Q argument,
  C argument2,
  A argument3,
  B argument4,
);