changeLocale method

Future<void> changeLocale(
  1. String langCode,
  2. String? countryCode
)

Implementation

Future<void> changeLocale(String langCode, String? countryCode) async {
  final locale = Locale(langCode, countryCode);
  await Get.updateLocale(locale);
}