User constructor

User({
  1. required String userId,
  2. String? userName,
  3. String? fullName,
  4. String? email,
  5. String? phoneNumber,
  6. Object? additionalInfo,
})

Implementation

User({
  required this.userId,
  this.userName,
  this.fullName,
  this.email,
  this.phoneNumber,
  this.additionalInfo,
});