Authenticator.username constructor

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

Implementation

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