setAttributes method
Implementation
OidcUser setAttributes(Map<String, dynamic> attributes) {
return OidcUser._(
idToken: idToken,
parsedIdToken: parsedIdToken,
attributes: {
...this.attributes,
...attributes,
},
token: token,
allowedAlgorithms: allowedAlgorithms,
keystore: keystore,
userInfo: userInfo,
);
}