CustomerModel constructor
CustomerModel({
- int? id,
- DateTime? dateCreated,
- DateTime? dateCreatedGmt,
- DateTime? dateModified,
- DateTime? dateModifiedGmt,
- String? email,
- String? firstName,
- String? lastName,
- String? role,
- String? username,
- String? password,
- Map<
String, dynamic> ? billing, - Map<
String, dynamic> ? shipping, - bool? isPayingCustomer,
- String? avatarUrl,
- List? metaData,
Implementation
CustomerModel({
this.id,
this.dateCreated,
this.dateCreatedGmt,
this.dateModified,
this.dateModifiedGmt,
this.email,
this.firstName,
this.lastName,
this.role,
this.username,
this.password,
this.billing,
this.shipping,
this.isPayingCustomer,
this.avatarUrl,
this.metaData,
});