GleapNetworkLog constructor

GleapNetworkLog({
  1. String? type,
  2. String? url,
  3. DateTime? date,
  4. GleapNetworkRequest? request,
  5. double? duration,
  6. bool? success,
  7. GleapNetworkResponse? response,
})

Implementation

GleapNetworkLog({
  this.type,
  this.url,
  this.date,
  this.request,
  this.duration,
  this.success,
  this.response,
});