ApplicationCommandInteractionData constructor

ApplicationCommandInteractionData({
  1. required String id,
  2. required String name,
  3. List<ApplicationCommandInteractionDataOption>? options,
})

Implementation

ApplicationCommandInteractionData({
  required this.id,
  required this.name,
  this.options,
});