asyncCancel method
Best-effort cancellation for async request.
Implementation
Future<bool> asyncCancel(int asyncRequestId) async {
final r = await _sendRequest<BoolResponse>(
AsyncCancelRequest(_nextRequestId(), asyncRequestId),
);
return r.value;
}