ClientAccountRegisterContext class

The ClientAccountRegisterContext class represents the context for registering a client account, including personal information, agreements, and attributes.

Constructors

ClientAccountRegisterContext({required String email, required String password, String? firstName, String? lastName, ClientSex? sex, String? phone, String? company, String? address, String? city, String? zipcode, String? countrycode, String? province, String? uuid, String? customId, ClientAgreements? agreements, Map<String, Object>? attributes})
ClientAccountRegisterContext.fromMap(Map map)
ClientAccountRegisterContext.fromMap(Map map) is a constructor that takes a Map as an argument and creates a new instance of ClientAccountRegisterContext using the values from the Map.

Properties

address String?
getter/setter pair
agreements ClientAgreements?
getter/setter pair
attributes Map<String, Object>?
getter/setter pair
city String?
getter/setter pair
company String?
getter/setter pair
countrycode String?
getter/setter pair
customId String?
getter/setter pair
email String
getter/setter pair
firstName String?
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
lastName String?
getter/setter pair
password String
getter/setter pair
phone String?
getter/setter pair
province String?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sex ClientSex?
getter/setter pair
uuid String?
getter/setter pair
zipcode String?
getter/setter pair

Methods

asMap() Map
Map asMap() is a method that returns a Map representation of the ClientAccountRegisterContext object. It includes all the properties of the object as key-value pairs in the returned Map. If a property is null, it will not be included in the returned Map. The agreements property is converted to a Map using its own asMap() method, and the attributes property is included as is.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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