runInComputeIsolate<Q, R> method
dedicated for compute operations (like crypto, hashing, etc)
Implementation
Future<R> runInComputeIsolate<Q, R>(R Function(Q) task, Q argument) async {
await ready;
return _runTask(task, argument, _computePool);
}