computePlatformResolvedLocale method

  1. @override
Locale? computePlatformResolvedLocale(
  1. List<Locale> supportedLocales
)
override

Performs the platform-native locale resolution.

Each platform may return different results.

If the platform fails to resolve a locale, then this will return null.

This method returns synchronously and is a direct call to platform specific APIs without invoking method channels.

Implementation

@override
Locale? computePlatformResolvedLocale(List<Locale> supportedLocales) => _platformDispatcher.computePlatformResolvedLocale(supportedLocales);