hasAnyRole method
Check if user has any of the specified roles
Implementation
@override
Future<bool> hasAnyRole(
String userId,
List<String> roles, {
String? resource,
Map<String, dynamic>? context,
}) async {
final data = await getAuthorization(
userId,
resource: resource,
context: context,
);
return data.hasAnyRole(roles);
}