LitLocalizations constructor

const LitLocalizations(
  1. Locale locale, {
  2. required String jsonAssetURL,
  3. bool debug = false,
})

Creates the LitLocalizations.

This constructor should ONLY be used on the LitLocalizationServiceDelegate.

The arguments are provided by the LitLocalizationServiceDelegate.

Implementation

const LitLocalizations(
  this.locale, {
  required this.jsonAssetURL,
  this.debug = false,
});