PdfHttpResponse constructor

const PdfHttpResponse({
  1. required int statusCode,
  2. required Uint8List body,
  3. Map<String, String> headers = const <String, String>{},
  4. Duration? requestTime,
  5. Duration? responseTime,
  6. Duration? totalTime,
})

Implementation

const PdfHttpResponse({
  required this.statusCode,
  required this.body,
  this.headers = const <String, String>{},
  this.requestTime,
  this.responseTime,
  this.totalTime,
});