RuutUser constructor

RuutUser({
  1. required String id,
  2. String? email,
  3. String? avatarUrl,
  4. String? fullName,
  5. String? phone,
  6. String? identifierHash,
  7. String? description,
  8. String? countryCode,
  9. String? city,
  10. String? companyName,
  11. SocialProfile? socialProfiles,
})

Implementation

RuutUser({
  required this.id,
  this.email,
  this.avatarUrl,
  this.fullName,
  this.phone,
  this.identifierHash,
  this.description,
  this.countryCode,
  this.city,
  this.companyName,
  this.socialProfiles,
});