Authenticator.email constructor

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

Implementation

Authenticator.email({
  required String email,
  required String password,
  super.id,
  super.timeMills,
  super.name,
  super.phone,
  super.photo,
  super.username,
  super.extra,
}) : super(provider: Provider.email, email: email, password: password);