trExists function
Implementation
bool trExists(String key, {BuildContext? context}) {
return context != null
? Localization.of(context)!
.exists(key)
: Localization.instance
.exists(key);
}
bool trExists(String key, {BuildContext? context}) {
return context != null
? Localization.of(context)!
.exists(key)
: Localization.instance
.exists(key);
}