UsernameAuthenticator constructor

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

Implementation

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