Auth<K extends AuthKeys> constructor

Auth<K extends AuthKeys>({
  1. String? id = "",
  2. int? timeMills,
  3. String? accessToken,
  4. int? age,
  5. bool? anonymous,
  6. bool? biometric,
  7. String? email,
  8. Map<String, dynamic>? extra,
  9. String? gender,
  10. String? idToken,
  11. bool? loggedIn,
  12. int? loggedInTime,
  13. int? loggedOutTime,
  14. String? name,
  15. int? online,
  16. String? password,
  17. String? path,
  18. String? phone,
  19. String? photo,
  20. String? platform,
  21. Provider? provider,
  22. double? random,
  23. String? token,
  24. String? username,
  25. bool? verified,
})

Implementation

Auth({
  super.id = "",
  super.timeMills,
  this.accessToken,
  this.age,
  this.anonymous,
  this.biometric,
  this.email,
  this.extra,
  this.gender,
  this.idToken,
  this.loggedIn,
  this.loggedInTime,
  this.loggedOutTime,
  this.name,
  this.online,
  this.password,
  this.path,
  this.phone,
  this.photo,
  String? platform,
  this.provider,
  this.random,
  this.token,
  this.username,
  this.verified,
}) : platform = platform ?? kPlatform;