copyWith method
Implementation
EditMessageLiveLocation copyWith({
int? chatId,
int? messageId,
ReplyMarkup? replyMarkup,
Location? location,
int? heading,
int? proximityAlertRadius,
}) =>
EditMessageLiveLocation(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
replyMarkup: replyMarkup ?? this.replyMarkup,
location: location ?? this.location,
heading: heading ?? this.heading,
proximityAlertRadius: proximityAlertRadius ?? this.proximityAlertRadius,
);