copyWith method
EditBusinessMessageLiveLocation
copyWith({
- String? businessConnectionId,
- int? chatId,
- int? messageId,
- ReplyMarkup? replyMarkup,
- LiveLocation? location,
Implementation
EditBusinessMessageLiveLocation copyWith({
String? businessConnectionId,
int? chatId,
int? messageId,
ReplyMarkup? replyMarkup,
LiveLocation? location,
}) => EditBusinessMessageLiveLocation(
businessConnectionId: businessConnectionId ?? this.businessConnectionId,
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
replyMarkup: replyMarkup ?? this.replyMarkup,
location: location ?? this.location,
);