Is there a better way to achieve this call:
var response = await url.PostToUrlAsync($"Body={body.UrlEncode()}&From={from.UrlEncode()}&To={to.UrlEncode()}", requestFilter: x=>x.AddBasicAuth(_accountSid, _token));
I tried something like url.PostToUrlAsync(new {Body=body,From=from,To=to}, requestFilter...)
but it produces a different result.