Logs constructor

Logs({
  1. String? clientId,
  2. required num time,
  3. required String type,
  4. String? userId,
  5. String? sessionId,
  6. String? ipAddress,
  7. LogsDetails? details,
})

Returns a new Logs instance.

Implementation

Logs({
  this.clientId,
  required this.time,
  required this.type,
  this.userId,
  this.sessionId,
  this.ipAddress,
  this.details,
});