findSystemLocale function

Future<String> findSystemLocale()

This provides facilities for Internationalization that are only available when running in the web browser. You should import only one of this or intl_standalone.dart. Right now the only thing provided here is the ability to find the default locale from the browser.

Implementation

Future<String> findSystemLocale() => throw UnimplementedError(
    'This is a stub for either `intl_standalone` or `intl_browser`');