SuggestedUser constructor

SuggestedUser({
  1. String? name,
  2. String? hashedphone,
  3. int? id,
  4. String? localizedheadline,
  5. List<String>? reason,
  6. List<Community>? community,
})

Implementation

SuggestedUser({
  this.name,
  this.hashedphone,
  this.id,
  this.localizedheadline,
  this.reason,
  this.community,
});