Auth<Key extends AuthKeys> constructor

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

Implementation

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