ProfileDTO constructor

ProfileDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? email,
  7. String? passwordChangedAt,
  8. bool? isGuest,
  9. bool? isTest,
  10. String? type,
  11. Detail? detail,
  12. List<AddressDTO>? addresses,
  13. List<RoleDTO>? roles,
  14. List<StoreDTO>? stores,
})

Implementation

ProfileDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.email,
    this.passwordChangedAt,
    this.isGuest,
    this.isTest,
    this.type,
    this.detail,
    this.addresses,
    this.roles,
    this.stores});