pek anlamam ama internette şöyle bir kod buldum. await den kaynaklanıyor diyor.
try {  final credential = await FirebaseAuth.instance.signInWithEmailAndPassword(    email: emailAddress,    password: password  ); } on FirebaseAuthException catch (e) {  if (e.code == 'user-not-found') {    print('No user found for that email.');  } else if (e.code == 'wrong-password') {    print('Wrong password provided for that user.');  } }