UserAttributes class

UserIdentity class to update Person profile with the data provided. Overrides any existing values with the provided ones, null values will remove pre-existing data from server.

Constructors

UserAttributes({String? firstName, String? middleName, String? lastName, Gender? gender, String? birthday, List<String>? tags, Map<String, dynamic>? customAttributes})
Default constructor with all params.

Properties

birthday String?
Birthday, accepted format is YYYY-MM-DD.
getter/setter pair
customAttributes Map<String, dynamic>?
getter/setter pair
firstName String?
First name of the user, String.
getter/setter pair
gender Gender?
Gender of the user.
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
lastName String?
Last name of the user, String.
getter/setter pair
middleName String?
Middle name of the user, String.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tags List<String>?
List of tags of the user, String.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Mapping UserAttributes to json.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override