Auth<K extends AuthKeys> constructor

Auth<K extends AuthKeys>({
  1. String? id = "",
  2. int? timeMills,
  3. bool? biometric,
  4. String? email,
  5. bool? loggedIn,
  6. int? loggedInTime,
  7. int? loggedOutTime,
  8. String? name,
  9. String? password,
  10. String? phone,
  11. String? photo,
  12. String? provider,
  13. String? username,
  14. bool? verified,
})

Implementation

Auth({
  super.id = "",
  super.timeMills,
  this.biometric,
  this.email,
  this.loggedIn,
  this.loggedInTime,
  this.loggedOutTime,
  this.name,
  this.password,
  this.phone,
  this.photo,
  this.provider,
  this.username,
  this.verified,
});