UserLevelProtocal constructor

UserLevelProtocal({
  1. int? level,
  2. String? levelName,
  3. String? levelImageUrl,
})

Implementation

UserLevelProtocal({
  this.level,
  this.levelName, // 该等级的名称(如黄金、钻石💎)
  this.levelImageUrl,
});