hitLogger method

Future<T> hitLogger(
  1. String tag, [
  2. String? client
])

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;
}