HomePage constructor

const HomePage({
  1. Key? key,
  2. String? token,
  3. String? firstName,
  4. String? lastName,
  5. String? about,
  6. String? profileImg,
  7. String? partnerName,
  8. String? partnerProfileImg,
  9. dynamic partnerMedia,
  10. List<PollOptionModel>? generalPollOptionsList,
  11. dynamic loc,
})

Implementation

const HomePage({
  Key? key,
  this.token,
  this.firstName,
  this.lastName,
  this.about,
  this.profileImg,
  this.partnerName,
  this.partnerProfileImg,
  this.partnerMedia,
  this.generalPollOptionsList,
  this.loc,
}) : super(key: key);