CommonUserModel constructor

CommonUserModel({
  1. int? id,
  2. String? firebaseId,
  3. String? username,
  4. String? uniqueId,
  5. String? displayName,
  6. String? thumbnail,
  7. int? isPro,
  8. List<String>? fcmTokens,
  9. String? countryCode,
})

Implementation

CommonUserModel({
  this.id,
  this.firebaseId,
  this.username,
  this.uniqueId,
  this.displayName,
  this.thumbnail,
  this.isPro,
  this.fcmTokens,
  this.countryCode,
});