fetchUserList method

void fetchUserList({
  1. int? groupID,
})

Implementation

void fetchUserList({int? groupID}) {
  // Sunucudan kullanıcı listesi isteme
  socket.emit('USER_LIST', {
    "groupID": groupID,
  });
}