LogEntry constructor

LogEntry({
  1. HttpRequest? httpRequest,
  2. String? insertId,
  3. Map<String, String>? labels,
  4. String? name,
  5. LogEntryOperation? operation,
  6. Map<String, Object?>? protoPayload,
  7. String? severity,
  8. LogEntrySourceLocation? sourceLocation,
  9. Map<String, Object?>? structPayload,
  10. String? textPayload,
  11. String? timestamp,
  12. String? trace,
})

Implementation

LogEntry({
  this.httpRequest,
  this.insertId,
  this.labels,
  this.name,
  this.operation,
  this.protoPayload,
  this.severity,
  this.sourceLocation,
  this.structPayload,
  this.textPayload,
  this.timestamp,
  this.trace,
});