httpResponse static method

void httpResponse(
  1. String message, {
  2. Map<String, dynamic>? extra,
  3. String? prefix,
})

HTTP 响应日志 TalkerKey.httpResponse

Implementation

static void httpResponse(
  String message, {
  Map<String, dynamic>? extra,
  String? prefix,
}) => _log(
  message,
  TalkerKey.httpResponse,
  LogLevel.info,
  extra: extra,
  prefix: prefix,
);