NetworkLogResponse constructor

NetworkLogResponse({
  1. required String requestId,
  2. int? statusCode,
  3. Map<String, dynamic>? headers,
  4. dynamic body,
  5. String? error,
  6. required DateTime timestamp,
})

Implementation

NetworkLogResponse({
  required this.requestId,
  this.statusCode,
  this.headers,
  this.body,
  this.error,
  required this.timestamp,
});