GuildAuditLogEntryResponse constructor

const GuildAuditLogEntryResponse({
  1. required String id,
  2. required AuditLogActionType actionType,
  3. SnowflakeType? userId,
  4. String? targetId,
  5. String? reason,
  6. GuildAuditLogEntryResponseOptions? options,
  7. List<AuditLogChangeSchema>? changes,
})

Implementation

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