validateRole method
Implementation
bool validateRole(dynamic role) {
/// validates that there is a role matching with this Authorization
return _roles.where((element) => element == role).toList().isNotEmpty;
}
bool validateRole(dynamic role) {
/// validates that there is a role matching with this Authorization
return _roles.where((element) => element == role).toList().isNotEmpty;
}