of static method

MinLocale of(
  1. BuildContext context
)

Obtiene el MinLocale más cercano del árbol de widgets.

Si no hay un MinLocalizations en el árbol, devuelve MinLocale.es como fallback seguro.

Implementation

static MinLocale of(BuildContext context) {
  final loc = context.dependOnInheritedWidgetOfExactType<MinLocalizations>();
  return loc?.localeData ?? MinLocale.es;
}