abstract class BaseApiServices { Future getApi(String url); Future postApi(var data, String url); Future deleteApi(String url, var data); }