UserV2 constructor

const UserV2({
  1. required String id,
  2. required String name,
  3. required String username,
  4. String? profileImageUrl,
  5. bool? verified = false,
})

Implementation

const UserV2({
  required this.id,
  required this.name,
  required this.username,
  this.profileImageUrl,
  this.verified = false,
});