DiscordAuditLogEntry constructor

DiscordAuditLogEntry({
  1. String? targetId,
  2. List<DiscordAuditLogChange>? changes,
  3. DiscordSnowflake? userId,
  4. required DiscordSnowflake id,
  5. required int actionType,
  6. DiscordOptionalAuditEntryInfo? options,
  7. String? reason,
})

Implementation

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