listApplications static method
list applications that current user's can access
Implementation
static Future<Result> listApplications(
[int? page = 1, int? limit = 10]) async {
return await get('/api/v2/users/me/applications/allowed?page=' +
page.toString() +
"&limit=" +
limit.toString());
}