UserInfo constructor

UserInfo({
  1. String? educationSystem,
  2. required String? department,
  3. String? className,
  4. required String id,
  5. required String? name,
  6. String? pictureUrl,
  7. Uint8List? pictureBytes,
  8. String? email,
})

Implementation

UserInfo({
  this.educationSystem,
  required this.department,
  this.className,
  required this.id,
  required this.name,
  this.pictureUrl,
  this.pictureBytes,
  this.email,
});