User constructor

User({
  1. DateTime? createdAt,
  2. DateTime? disabledAt,
  3. String? email,
  4. int? id,
  5. String? role,
  6. String? displayName,
  7. String? profilePhotoUrl,
})

Implementation

User({
  this.createdAt,
  this.disabledAt,
  this.email,
  this.id,
  this.role,
  this.displayName,
  this.profilePhotoUrl,
});