ElyUser constructor

ElyUser({
  1. required String id,
  2. required String username,
  3. required String email,
  4. String? lang,
  5. String? profileLink,
  6. String? preferredLanguage,
  7. Map<String, dynamic>? properties,
})

Creates an Ely.by user object with the specified information

Implementation

ElyUser({
  required this.id,
  required this.username,
  required this.email,
  this.lang,
  this.profileLink,
  this.preferredLanguage,
  this.properties,
});