Profile constructor

Profile({
  1. String? name,
  2. String? desc,
  3. String? picture,
  4. List<String>? blockedUsersList,
})

Implementation

Profile({
  this.name,
  this.desc,
  this.picture,
  this.blockedUsersList,
});