User constructor

User({
  1. String? photourl,
  2. String? localizedheadline,
  3. int? id,
  4. String? name,
})

Implementation

User({
  this.photourl,
  this.localizedheadline,
  this.id,
  this.name,
});