cancelAll static method

Future<void> cancelAll()

Cancels all tasks.

Implementation

static Future<void> cancelAll() async {
  _ensureInitialized();
  await TaskFlowPlatform.instance.cancelAll();
}