UserModel constructor

UserModel({
  1. int? id,
  2. String? userPayloadId,
  3. String? firstName,
  4. String? lastName,
  5. String? profileImg,
  6. String? about,
  7. Media? media,
  8. int? partnerId,
  9. bool? enabled,
})

Implementation

UserModel({
  this.id,
  this.userPayloadId,
  this.firstName,
  this.lastName,
  this.profileImg,
  this.about,
  this.media,
  this.partnerId,
  this.enabled,
});