EmailAuthenticator constructor

EmailAuthenticator({
  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? provider,
  9. String? username,
  10. Map<String, dynamic>? extra,
})

Implementation

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