UpdateUsersNearby constructor

const UpdateUsersNearby(
  1. {required List<ChatNearby> usersNearby,
  2. dynamic extra,
  3. int? clientId}
)

The list of users nearby has changed. The update is guaranteed to be sent only 60 seconds after a successful searchChatsNearby request

Implementation

const UpdateUsersNearby({
  required this.usersNearby,
  this.extra,
  this.clientId,
});