get method

Future<Response> get(
  1. String url, {
  2. Map<String, dynamic>? body,
  3. Map<String, String>? headers,
  4. NetworkRequestFile? requestFile,
  5. int? timeOutSecond,
  6. bool? isEnableLogDioPretty,
  7. bool? handleErrorXMLHttpRequest,
  8. NetworkDiocallback_dio? callback,
})

Implementation

Future<Response> get(String url,
    {Map<String, dynamic>? body,
      Map<String, String>? headers,
      NetworkRequestFile? requestFile,
      int?  timeOutSecond,
      bool? isEnableLogDioPretty ,
      bool?  handleErrorXMLHttpRequest,
      NetworkDiocallback_dio? callback}) async {

  return await any( url,  NetworkTypeDio.get, timeOutSecond : timeOutSecond,
      body: body, headers: headers, requestFile: requestFile, handleErrorXMLHttpRequest: handleErrorXMLHttpRequest,
      isEnableLogDioPretty: isEnableLogDioPretty, callback: callback );
}