getI18NDelegate method
Implementation
@override
FlutterI18nDelegate? getI18NDelegate({Locale? forcedLocale}) {
if (i18nProps != null) {
_i18nDelegate ??= FlutterI18nDelegate(
translationLoader:
getTranslationLoader(i18nProps!, forcedLocale: forcedLocale));
return _i18nDelegate;
}
return null;
}