User constructor

User({
  1. int? pk,
  2. String? username,
  3. String? fullName,
  4. String? profilePicUrl,
})

Implementation

User({this.pk, this.username, this.fullName, this.profilePicUrl});