I18nText constructor

const I18nText(
  1. String _key, {
  2. Key? key,
  3. Text child = _defaultText,
  4. String? fallbackKey,
  5. Map<String, String>? translationParams,
})

Implementation

const I18nText(this._key,
    {Key? key,
    this.child = _defaultText,
    this.fallbackKey,
    this.translationParams})
    : super(key: key);