AuthUserAttribute constructor

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

Creates an object that holds the key and value for a user attribute.

Implementation

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