/// <inheritdoc />
 public async Task <TResult> CallApiMethodAsync <TResult>(ApiMethod method, CancellationToken cancellationToken, IEnumerable <JsonConverter> converters = null)
     where TResult : class
 {
     return(await _client.CallApiMethodAsync <TResult>(method, cancellationToken, converters));
 }