setLocaleIdentifier function

Future<void> setLocaleIdentifier(
  1. String localeIdentifier
)

Overrides default locale

You can specify a locale in which the results are returned. When not used the current active locale of the device will be used. The localeIdentifier should be formatted using the syntax: languageCode_countryCode (eg. en_US or nl_NL).

Implementation

Future<void> setLocaleIdentifier(
  String localeIdentifier,
) =>
    GeocodingPlatform.instance!.setLocaleIdentifier(
      localeIdentifier,
    );