VideoFeedPollComponent constructor

VideoFeedPollComponent({
  1. required String type,
  2. required String id,
  3. String? customPayload,
  4. String? title,
  5. List<String>? options,
  6. int? selectedOptionIndex,
})

Implementation

VideoFeedPollComponent({
  required super.type,
  required super.id,
  super.customPayload,
  this.title,
  this.options,
  this.selectedOptionIndex,
});