HTTPRequestMetadata constructor

HTTPRequestMetadata({
  1. required String method,
  2. required Uri url,
  3. Map<String, String> headers = const {},
  4. String? body,
  5. required DateTime startTime,
  6. required Stopwatch stopwatch,
})

Implementation

HTTPRequestMetadata({
  required this.method,
  required this.url,
  this.headers = const {},
  this.body,
  required this.startTime,
  required this.stopwatch,
});