setLanguageCode method

Future<void> setLanguageCode(
  1. String? languageCode
)

When set to null, sets the user-facing language code to be the default app language.

The language code will propagate to email action templates (password reset, email verification and email change revocation), SMS templates for phone authentication, reCAPTCHA verifier and OAuth popup/redirect operations provided the specified providers support localization with the language code specified.

Implementation

Future<void> setLanguageCode(String? languageCode) {
  return _delegate.setLanguageCode(languageCode);
}