debugCheckHasLayrzAppLocalizations function
Implementation
bool debugCheckHasLayrzAppLocalizations(BuildContext context) {
assert(() {
if (Localizations.of<LayrzAppLocalizations>(context, LayrzAppLocalizations) == null) {
throw FlutterError('LayrzAppLocalizations was used before it was initialized');
}
return true;
}());
return true;
}