WalletTasksWorkerPool.wasm constructor

WalletTasksWorkerPool.wasm({
  1. PlatformThreadHook? threadHook,
  2. ExceptionManager? exceptionManager,
  3. ConcurrencySettings? concurrencySettings,
})

Implementation

WalletTasksWorkerPool.wasm({
  PlatformThreadHook? threadHook,
  ExceptionManager? exceptionManager,
  ConcurrencySettings? concurrencySettings,
}) : super(
       (ExceptionManager exceptionManager) => WalletTasksWorker.wasm(
         threadHook: threadHook,
         exceptionManager: exceptionManager,
       ),
       concurrencySettings: concurrencySettings,
       exceptionManager: exceptionManager,
     );