VideoRequestInputOptions constructor

VideoRequestInputOptions({
  1. required String senderAddress,
  2. required String recipientAddress,
  3. required String chatId,
  4. void onReceiveMessage(
    1. String
    )?,
  5. bool? retry,
  6. VideoRequestInputDetails? details,
})

Implementation

VideoRequestInputOptions({
  required this.senderAddress,
  required this.recipientAddress,
  required this.chatId,
  this.onReceiveMessage,
  this.retry,
  this.details,
});