appLanguageQuery method
Future<void> appLanguageQuery ()
<p>This function perform graphQL query to check the app language. The function uses <code>gqlAuthQuery</code> method provided by Database Functions Services.</p>
Implementation
Future\<void\> appLanguageQuery() async \{
try \{
await databaseFunctions.gqlAuthQuery(queries.userLanguage());
\} catch (e) \{
print(e);
\}
\}