CreateVideoChat constructor

const CreateVideoChat({
  1. required int chatId,
  2. required String title,
  3. required int startDate,
  4. required bool isRtmpStream,
})

Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires can_manage_video_chats rights

Implementation

const CreateVideoChat({
  required this.chatId,
  required this.title,
  required this.startDate,
  required this.isRtmpStream,
});