copyWith method
EditInlineMessageLiveLocation
copyWith({
- String? inlineMessageId,
- ReplyMarkup? replyMarkup,
- LiveLocation? location,
Implementation
EditInlineMessageLiveLocation copyWith({
String? inlineMessageId,
ReplyMarkup? replyMarkup,
LiveLocation? location,
}) => EditInlineMessageLiveLocation(
inlineMessageId: inlineMessageId ?? this.inlineMessageId,
replyMarkup: replyMarkup ?? this.replyMarkup,
location: location ?? this.location,
);