Rank 1: Thread
I have internet permission,
I'm not getting any messages on my phone
bool result = await InternetConnectionChecker().hasConnection; if (result == true) { print('Internet'); } else { print('No internet :frowning: Reason:'); print(InternetConnectionChecker().hasConnection); }
Client client = Client(); client.setEndpoint('https://cloud.appwrite.io/v1').setProject('64ef18ed8758c1e4c074').setSelfSigned(status: true);
final account = Account(client);
final session = await account.createPhoneSession(userId: '905363890562', phone: '+905363890562'); print(session); } on AppwriteException catch (ex) { print(ex.message); }```