copyWith method

EditMessageLiveLocation copyWith({
  1. int? chatId,
  2. int? messageId,
  3. ReplyMarkup? replyMarkup,
  4. LiveLocation? location,
})

Implementation

EditMessageLiveLocation copyWith({
  int? chatId,
  int? messageId,
  ReplyMarkup? replyMarkup,
  LiveLocation? location,
}) => EditMessageLiveLocation(
  chatId: chatId ?? this.chatId,
  messageId: messageId ?? this.messageId,
  replyMarkup: replyMarkup ?? this.replyMarkup,
  location: location ?? this.location,
);