NetworkActivityData constructor

NetworkActivityData({
  1. required bool isSuccess,
  2. required String uuid,
  3. required String method,
  4. required String url,
  5. required Map<String, String> requestHeaders,
  6. dynamic requestBody,
  7. int? status,
  8. Map<String, String>? responseHeaders,
  9. dynamic responseBody,
  10. int? tookMs,
  11. String? errorType,
  12. String? errorMessage,
})

Implementation

NetworkActivityData({
  required this.isSuccess,
  required this.uuid,
  required this.method,
  required this.url,
  required this.requestHeaders,
  this.requestBody,
  this.status,
  this.responseHeaders,
  this.responseBody,
  this.tookMs,
  this.errorType,
  this.errorMessage,
});