hitLogger method
Implementation
Future<T> hitLogger(String tag, [String? client]) async {
HitLogger.log(tag, type: HitType.request, client: client);
final data = await this;
HitLogger.log(tag, type: HitType.response, client: client, data: data);
return data;
}