copyWith method

UpdateMessageLiveLocationViewed copyWith({
  1. int? chatId,
  2. int? messageId,
})

Implementation

UpdateMessageLiveLocationViewed copyWith({int? chatId, int? messageId}) =>
    UpdateMessageLiveLocationViewed(
      chatId: chatId ?? this.chatId,
      messageId: messageId ?? this.messageId,
    );