executeWithArg<T, Q> abstract method

Future<T> executeWithArg<T, Q>(
  1. Task1<T, Q> task,
  2. Q argument
)

Executes given task with given argument in combine isolate.

This future may complete with:

Implementation

Future<T> executeWithArg<T, Q>(Task1<T, Q> task, Q argument);