User constructor

User({
  1. required String username,
  2. String? password,
  3. required String userLevel,
})

Implementation

User({required this.username, this.password, required this.userLevel});