getIdentity method
Implementation
Future<dynamic> getIdentity() async {
final Uri uri = Uri.parse(url + '/eywa/whoami');
final http.Response response = await client.get(uri);
return jsonDecode(utf8.decode(response.bodyBytes));
}
Future<dynamic> getIdentity() async {
final Uri uri = Uri.parse(url + '/eywa/whoami');
final http.Response response = await client.get(uri);
return jsonDecode(utf8.decode(response.bodyBytes));
}