getEffectiveRoles method
Get user's effective roles for a resource
Implementation
@override
Future<List<String>> getEffectiveRoles(String userId, String resource) async {
final data = await getAuthorization(userId, resource: resource);
return data.roles;
}