sendRequestUnchecked<T> method
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);