copyWith method

UpdateChatVideoChat copyWith({
  1. int? chatId,
  2. VideoChat? videoChat,
})

Implementation

UpdateChatVideoChat copyWith({int? chatId, VideoChat? videoChat}) =>
    UpdateChatVideoChat(
      chatId: chatId ?? this.chatId,
      videoChat: videoChat ?? this.videoChat,
    );