copyWith method
EditMessageLiveLocation
copyWith({
- int? chatId,
- int? messageId,
- ReplyMarkup? replyMarkup,
- 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,
);