Profile constructor

const Profile({
  1. String? name,
  2. String? about,
  3. String? website,
  4. String? location,
  5. String? coverImage,
  6. String? profileImage,
})

Implementation

const Profile({
  this.name,
  this.about,
  this.website,
  this.location,
  this.coverImage,
  this.profileImage,
});