setLanguage method

void setLanguage(
  1. String lang
)

Sets the UI language based on the given ISO 639-1 code. Checkout the Situm docs to see the list of supported languages.

Implementation

void setLanguage(String lang) async {
  _sendMessage(WV_MESSAGE_UI_SET_LANGUAGE, "'$lang'");
}