Authenticator.guest constructor

Authenticator.guest({
  1. String? id = "",
  2. int? timeMills,
  3. String? name,
  4. String? email,
  5. String? phone,
  6. String? photo,
  7. String? username,
  8. Map<String, dynamic>? extra,
})

Implementation

Authenticator.guest({
  super.id,
  super.timeMills,
  super.name,
  super.email,
  super.phone,
  super.photo,
  super.username,
  super.extra,
}) : super(provider: "guest");