AppProfile constructor

AppProfile({
  1. String id = "",
  2. String name = "",
  3. Position? position,
  4. String address = "",
  5. String phoneNumber = "",
  6. String photoUrl = "",
  7. String coverImgUrl = "",
  8. String aboutMe = "",
  9. UsageReason usageReason = UsageReason.casual,
  10. String mainFeature = "",
  11. int lastSpotifySync = 0,
  12. double reviewStars = 10.0,
  13. bool isActive = false,
  14. ProfileType type = ProfileType.general,
  15. bool showInDirectory = false,
  16. VerificationLevel verificationLevel = VerificationLevel.none,
  17. int lastNameUpdate = 0,
})

Implementation

AppProfile({
  this.id = "",
  this.name = "",
  this.position,
  this.address = "",
  this.phoneNumber = "",
  this.photoUrl = "",
  this.coverImgUrl = "",
  this.aboutMe = "",
  this.usageReason = UsageReason.casual,
  this.mainFeature = "",
  this.lastSpotifySync = 0,
  this.reviewStars = 10.0,
  this.isActive = false,
  this.type = ProfileType.general,
  this.showInDirectory = false,
  this.verificationLevel = VerificationLevel.none,
  this.lastNameUpdate = 0,
});