executeWithApply<T> abstract method

Future<T> executeWithApply<T>(
  1. TaskApply task,
  2. List positionalArguments, [
  3. Map<Symbol, dynamic>? namedArguments
])

Executes given task with given arguments in combine isolate.

This future may complete with:

Implementation

Future<T> executeWithApply<T>(
  TaskApply task,
  List<dynamic> positionalArguments, [
  Map<Symbol, dynamic>? namedArguments,
]);