i18n property

JSI18n get i18n

Use the chrome.i18n infrastructure to implement internationalization across your whole app or extension.

Implementation

JSI18n get i18n {
  var i18nNullable = this.i18nNullable;
  if (i18nNullable == null) {
    throw ApiNotAvailableException('chrome.i18n');
  }
  return i18nNullable;
}