removeLocale method

Future<void> removeLocale(
  1. Locale locale
)

Unregisters the locale from the store and from the cache.

Implementation

Future<void> removeLocale(Locale locale) async {
  _data.remove(locale);
}