Future<void> login() async { try { final...
# general
d
Future login() async { try { final response = await superTokensHttpClient.post(Uri.parse("$baseURL/login")); print(response.body); return; } catch (e) { throw e; } }
4 Views