getAuthorizedResources static method
get authorized resources
Implementation
static Future<Result> getAuthorizedResources(
[String? namespace, String? resourceType]) async {
final Result result = await get('/api/v3/get-my-authorized-resources' +
(namespace == null ? "" : "?namespace=" + namespace) +
(resourceType == null ? "" : "?resourceType=" + resourceType));
return result;
}