Payload constructor

Payload(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. String? requestUrl,
  7. Map<String, String>? requestHeaders,
  8. Map<String, dynamic>? requestBody,
  9. Map<String, String>? responseHeaders,
  10. String? responseBody,
  11. int? responseCode,
  12. int? totalTime
)

Implementation

Payload(
  id,
  createdAt,
  updatedAt,
  objectType,
  mode,
  this.requestUrl,
  this.requestHeaders,
  this.requestBody,
  this.responseHeaders,
  this.responseBody,
  this.responseCode,
  this.totalTime,
) : super(id, createdAt, updatedAt, objectType, mode);