of static method

I18Next? of(
  1. BuildContext context
)

Returns the localized I18Next in the widget tree that corresponds to the given context via Localizations.

Returns null if not found.

An instance is usually registered and created by the I18NextLocalizationDelegate.

Implementation

static I18Next? of(BuildContext context) =>
    Localizations.of(context, I18Next);