updateMessageLiveLocationViewed property

UpdateMessageLiveLocationViewed? updateMessageLiveLocationViewed

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

Implementation

UpdateMessageLiveLocationViewed? get updateMessageLiveLocationViewed {
  if (this is UpdateMessageLiveLocationViewed) {
    return this as UpdateMessageLiveLocationViewed;
  }
  return null;
}