executeWith5Args<T, Q, C, A, B, D> abstract method

Future<T> executeWith5Args<T, Q, C, A, B, D>(
  1. Task5<T, Q, C, A, B, D> task,
  2. Q argument,
  3. C argument2,
  4. A argument3,
  5. B argument4,
  6. D argument5,
)

Executes given task with given arguments in combine isolate.

This future may complete with:

Implementation

Future<T> executeWith5Args<T, Q, C, A, B, D>(
  Task5<T, Q, C, A, B, D> task,
  Q argument,
  C argument2,
  A argument3,
  B argument4,
  D argument5,
);