using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace RudderSdk.Unity { public interface IUnityRequestExecutor { Task SendAsync( string method, string url, string body, IReadOnlyDictionary headers, CancellationToken cancellationToken = default); } }