UpdateMessageLiveLocationViewed constructor

const UpdateMessageLiveLocationViewed({
  1. required int chatId,
  2. required int messageId,
  3. dynamic extra,
  4. int? clientId,
})

A message with a live location was viewed. When the update is received, the application is supposed to update the live location

Implementation

const UpdateMessageLiveLocationViewed({
  required this.chatId,
  required this.messageId,
  this.extra,
  this.clientId,
});