InteractionData constructor

InteractionData({
  1. String? id,
  2. String? name,
  3. ApplicationCommandType? type,
  4. ResolvedData? resolved,
  5. List<ApplicationCommandInteractionDataOption>? options,
  6. String? customId,
  7. ComponentType? componentType,
  8. List<String>? values,
  9. String? targetId,
})

Create a new InteractionData

Implementation

InteractionData({
  this.id,
  this.name,
  this.type,
  this.resolved,
  this.options,
  this.customId,
  this.componentType,
  this.values,
  this.targetId,
});