ChatCall constructor

ChatCall(
  1. ChatItemId id,
  2. ChatId chatId,
  3. User author,
  4. PreciseDateTime at, {
  5. required List<ChatCallMember> members,
  6. required bool withVideo,
  7. PreciseDateTime? conversationStartedAt,
  8. int? finishReasonIndex,
  9. PreciseDateTime? finishedAt,
  10. ChatMembersDialed? dialed,
})

Implementation

ChatCall(
  super.id,
  super.chatId,
  super.author,
  super.at, {
  required this.members,
  required this.withVideo,
  this.conversationStartedAt,
  this.finishReasonIndex,
  this.finishedAt,
  this.dialed,
});