User constructor

User(
  1. int _id,
  2. String? _idNumber,
  3. String? _password,
  4. String? _fullName,
  5. String? _dateOfBirth,
  6. String? _email,
  7. String? _mobile,
)

Implementation

User(super._id, this._idNumber, this._password, this._fullName,
    this._dateOfBirth, this._email, this._mobile);