updateSettings method
Updates the settings of the places client with the given API key and locale.
Implementation
@override
Future<void> updateSettings(
String apiKey, {
Locale? locale,
bool? useNewApi,
}) async {
if (locale != null) {
_language = locale.languageCode;
}
}