UserEntity constructor

UserEntity({
  1. String? nickName,
  2. String? faceUrl,
  3. String? selfSignature,
  4. UserGenderEnum? gender,
  5. int? role,
  6. int? level,
  7. UserAllowTypeEnum? allowType,
  8. Map<String, String>? customInfo,
})

Implementation

UserEntity({
  this.nickName,
  this.faceUrl,
  this.selfSignature,
  this.gender,
  this.role,
  this.level,
  this.allowType,
  this.customInfo,
});