AuthUserAttribute constructor

const AuthUserAttribute({
  1. required AuthUserAttributeKey userAttributeKey,
  2. required String value,
})

The key and value for a user attribute.

Implementation

const AuthUserAttribute({
  required this.userAttributeKey,
  required this.value,
});