ApplicationCommandInteractionDataOption constructor

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

Implementation

ApplicationCommandInteractionDataOption({
  required this.name,
  this.value,
  this.options,
});