Auth<Key extends AuthKeys> constructor

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

Implementation

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