sendRequestUnchecked<T> method

Future<T> sendRequestUnchecked<T>(
  1. String operation,
  2. Map<String, dynamic> params
)

Sends a typed request directly to the background isolate, bypassing the isReady guard.

Use this only during initialization for operations that must succeed before the worker is marked ready (e.g., a two-phase 'init' request).

Implementation

Future<T> sendRequestUnchecked<T>(
  String operation,
  Map<String, dynamic> params,
) => rpc.sendRequest<T>(operation, params);