getDeviceLocale method

  1. @override
Future<String> getDeviceLocale()
override

Implementation

@override
Future<String> getDeviceLocale() async {
  final String deviceLocale =
      await methodChannel.invokeMethod('getDeviceLocale');
  return deviceLocale;
}