getBasic method
Implementation
Future<Response?> getBasic({
required String url,
Map<String, dynamic>? requestData,
String? basicToken,
Options? customHeaders,
int? retryCount,
Duration? retryDelay,
}) async =>
await _wrapRequest(
url: url,
basicToken: basicToken,
httpMethod: _DioHttpRequestMethod.getBasic,
requestData: requestData,
customHeaders: customHeaders,
retryCount: retryCount,
retryDelay: retryDelay,
);