AuditLogEntry constructor

AuditLogEntry({
  1. String? targetId,
  2. List<AuditLogChange>? changes,
  3. required String userId,
  4. required String id,
  5. required int actionType,
  6. AuditEntryInfo? options,
  7. String? reason,
})

Implementation

AuditLogEntry({
  this.targetId,
  this.changes,
  required this.userId,
  required this.id,
  required this.actionType,
  this.options,
  this.reason,
});