setAttributes method

OidcUser setAttributes(
  1. Map<String, dynamic> attributes
)

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,
  );
}