setLocale static method

void setLocale(
  1. String locale
)

Implementation

static void setLocale(String locale) {
  if (!_validateEnvironment()) {
    return;
  }
  _channel.invokeMapMethod("setLocale", {"locale": locale});
}