HttpActions constructor
HttpActions({})
Implementation
HttpActions(
{required String url,
Widget? noInternetPage,
BuildContext? globalContext,
required Map<String, String>? header}) {
endPoint = url;
noInternetScreen = noInternetPage;
context = globalContext;
allHeaders = header;
}