NUIUserInfo constructor

NUIUserInfo({
  1. required int userId,
  2. String? gender,
  3. String? dateOfBirth,
  4. double? latitude,
  5. double? longitude,
  6. AreaCode? areaCode,
  7. Map<String, dynamic>? others,
})

Implementation

NUIUserInfo({
  required this.userId,
  this.gender,
  this.dateOfBirth,
  this.latitude,
  this.longitude,
  this.areaCode,
  this.others
});