init method
void
init(})
Implementation
void init(String currentAtSignFromApp, AtClientImpl atClientInstanceFromApp,
{Function? newGetAtValueFromMainApp}) {
atClientInstance = atClientInstanceFromApp;
currentAtSign = currentAtSignFromApp;
allReceivedUsersList = [];
_allReceivedUsersController =
StreamController<List<HybridModel>?>.broadcast();
if (newGetAtValueFromMainApp != null) {
getAtValueFromMainApp = newGetAtValueFromMainApp;
} else {
getAtValueFromMainApp = getAtValue;
}
getAllLocationData();
}