forEachAttribute method
Implementation
void forEachAttribute(void Function(String name, Object? value) callback) {
attributes.forEach(callback);
if (profile != null) {
profile?.attributes.forEach((String str, Object? val) {
if (!attributes.containsKey(str)) {
callback(str, val);
}
});
}
}