EditMessageLiveLocation constructor

const EditMessageLiveLocation(
  1. {required int chatId,
  2. required int messageId,
  3. ReplyMarkup? replyMarkup,
  4. Location? location,
  5. required int heading,
  6. required int proximityAlertRadius}
)

Edits the message content of a live location. Messages can be edited for a limited period of time specified in the live location. Returns the edited message after the edit is completed on the server side

Implementation

const EditMessageLiveLocation({
  required this.chatId,
  required this.messageId,
  this.replyMarkup,
  this.location,
  required this.heading,
  required this.proximityAlertRadius,
});