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 aMapas an argument and creates a new instance ofClientAccountRegisterContextusing the values from theMap.
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 aMaprepresentation of theClientAccountRegisterContextobject. It includes all the properties of the object as key-value pairs in the returnedMap. If a property is null, it will not be included in the returnedMap. Theagreementsproperty is converted to aMapusing its ownasMap()method, and theattributesproperty 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