NetworkEventLog constructor

NetworkEventLog({
  1. Request? request,
  2. Response? response,
  3. NetworkError? error,
  4. DateTime? requestTimestamp,
  5. DateTime? responseTimestamp,
})

Implementation

NetworkEventLog({
  this.request,
  this.response,
  this.error,
  this.requestTimestamp,
  this.responseTimestamp,
});