setLocale method

Future<void> setLocale(
  1. String locale
)

Implementation

Future<void> setLocale(String locale) async {
  var localeInfo = {'locale': locale};
  await _channel.invokeMethod('setLocale', localeInfo);
}