UserProfile constructor

const UserProfile({
  1. String userID = '',
  2. String? nickname,
  3. String? avatarURL,
  4. String? selfSignature,
  5. Gender? gender,
  6. int? role,
  7. int? level,
  8. int? birthday,
  9. AllowType? allowType,
  10. Map<String, String>? customInfo,
})

Implementation

const UserProfile({
  this.userID = '',
  this.nickname,
  this.avatarURL,
  this.selfSignature,
  this.gender,
  this.role,
  this.level,
  this.birthday,
  this.allowType,
  this.customInfo,
});