Auth<K extends AuthKeys> constructor
Auth<K extends AuthKeys> ({
- String? id = "",
- int? timeMills,
- String? accessToken,
- int? age,
- bool? anonymous,
- bool? biometric,
- String? email,
- Map<
String, dynamic> ? extra, - String? gender,
- String? idToken,
- bool? loggedIn,
- int? loggedInTime,
- int? loggedOutTime,
- String? name,
- int? online,
- String? password,
- String? path,
- String? phone,
- String? photo,
- String? platform,
- Provider? provider,
- double? random,
- String? token,
- String? username,
- 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;