copyWith method

  1. @override
UpdateChatVideoChat copyWith({
  1. int? chatId,
  2. VideoChat? videoChat,
  3. dynamic extra,
  4. int? clientId,
})
override

Implementation

@override
UpdateChatVideoChat copyWith({
  int? chatId,
  VideoChat? videoChat,
  dynamic extra,
  int? clientId,
}) => UpdateChatVideoChat(
  chatId: chatId ?? this.chatId,
  videoChat: videoChat ?? this.videoChat,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);