User constructor

User({
  1. String? name,
  2. String? email,
  3. int? id,
  4. bool verified = false,
})

Implementation

User({this.name, this.email, this.id, this.verified = false});