ChatsNearby constructor

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

Represents a list of chats located nearby

Implementation

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