process<T extends IterableMixin<APIResponse>> abstract method

Future<List<T>> process<T extends IterableMixin<APIResponse>>(
  1. List<Future<T>> tasks, {
  2. String? message,
})

Processes synchronization tasks

  • tasks: The tasks to process * message: An optional message to display

Implementation

Future<List<T>> process<T extends IterableMixin<APIResponse>>(
    List<Future<T>> tasks,
    {String? message});