ProfileDetailModel constructor

ProfileDetailModel({
  1. String? userName,
  2. String? firstName,
  3. String? lastName,
  4. String? name,
  5. String? email,
  6. String? secretKey,
  7. String? profilePicture,
  8. String? id,
  9. String? userId,
})

Implementation

ProfileDetailModel({
  this.userName,
  this.firstName,
  this.lastName,
  this.name,
  this.email,
  this.secretKey,
  this.profilePicture,
  this.id,
  this.userId,
});