ShopLiveCommonUser constructor

ShopLiveCommonUser({
  1. required String userId,
  2. String? userName,
  3. int? age,
  4. ShopLiveCommonUserGender? gender,
  5. int? userScore,
  6. Map<String, dynamic>? custom,
})

Implementation

ShopLiveCommonUser({
  required this.userId,
  this.userName,
  this.age,
  this.gender,
  this.userScore,
  this.custom,
});